Browse Source

Fixed removing DMs from cache

pull/97/head
RogueException 9 years ago
parent
commit
4215a9d8cd
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Discord.Net/DiscordSocketClient.cs

+ 1
- 1
src/Discord.Net/DiscordSocketClient.cs View File

@@ -677,7 +677,7 @@ namespace Discord
}
}
else
channel = RemoveDMChannel(data.Id);
channel = RemoveDMChannel(data.Recipient.Id);
if (channel != null)
await ChannelDestroyed.RaiseAsync(channel).ConfigureAwait(false);
else


Loading…
Cancel
Save