Fixed DownloadMessages returning null

This commit is contained in:
RogueException
2015-11-19 00:59:22 -04:00
parent cd62fb6d1e
commit ff217a2714

View File

@@ -229,7 +229,7 @@ namespace Discord
try
{
var msgs = await _api.GetMessages(channel.Id, count, relativeMessageId, relativeDir).ConfigureAwait(false);
var result = msgs.Select(x =>
return msgs.Select(x =>
{
Message msg = null;
if (useCache)