diff --git a/Myriad/Cache/DiscordCacheExtensions.cs b/Myriad/Cache/DiscordCacheExtensions.cs index 5c3e26d6..03fbc9b4 100644 --- a/Myriad/Cache/DiscordCacheExtensions.cs +++ b/Myriad/Cache/DiscordCacheExtensions.cs @@ -68,7 +68,7 @@ namespace Myriad.Cache { // DM messages don't get Channel Create events first, so we need to save // some kind of stub channel object until we get the real one - return guildId == null ? default : cache.SaveDmChannelStub(channelId); + return guildId != null ? default : cache.SaveDmChannelStub(channelId); } } } \ No newline at end of file