Browse Source

Fix DownloadMessages not populating fields when useCache is true

tags/docs-0.9
RogueException 9 years ago
parent
commit
d37de71f87
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      src/Discord.Net/DiscordClient.Messages.cs

+ 1
- 3
src/Discord.Net/DiscordClient.Messages.cs 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();


Loading…
Cancel
Save