Fix DownloadMessages not populating fields when useCache is true

This commit is contained in:
RogueException
2015-11-21 15:41:36 -04:00
parent 05d2d32a14
commit d37de71f87

View File

@@ -243,10 +243,8 @@ namespace Discord
}
}
else
{
msg = /*_messages[x.Id] ??*/ new Message(this, x.Id, x.ChannelId, x.Author.Id);
msg.Update(x);
}
msg.Update(x);
return msg;
})
.ToArray();