fix thread member nre (#1977)

This commit is contained in:
Quin Lynch
2021-12-20 10:59:56 -04:00
committed by GitHub
parent 768a0a90b6
commit 5d43fe65b4
3 changed files with 5 additions and 23 deletions

View File

@@ -137,16 +137,6 @@ namespace Discord.WebSocket
internal void Update(Model model)
{
ThreadJoinedAt = model.JoinTimestamp;
if (model.Presence.IsSpecified)
{
GuildUser.Update(Discord.State, model.Presence.Value, true);
}
if (model.Member.IsSpecified)
{
GuildUser.Update(Discord.State, model.Member.Value);
}
}
/// <inheritdoc/>