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 else
{
msg = /*_messages[x.Id] ??*/ new Message(this, x.Id, x.ChannelId, x.Author.Id); msg = /*_messages[x.Id] ??*/ new Message(this, x.Id, x.ChannelId, x.Author.Id);
msg.Update(x); msg.Update(x);
}
return msg; return msg;
}) })
.ToArray(); .ToArray();