From 7c456ad8cfdf183d1f5045297bc0a0966b023b71 Mon Sep 17 00:00:00 2001 From: alyssa Date: Tue, 10 Dec 2024 05:59:31 +0900 Subject: [PATCH] fix(bot): typo --- PluralKit.Bot/Services/LogChannelService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Services/LogChannelService.cs b/PluralKit.Bot/Services/LogChannelService.cs index d7e5e452..a10ece62 100644 --- a/PluralKit.Bot/Services/LogChannelService.cs +++ b/PluralKit.Bot/Services/LogChannelService.cs @@ -68,7 +68,7 @@ public class LogChannelService // get log channel info from the database var guild = await _repo.GetGuild(guildId); var logChannelId = guild.LogChannel; - var isBlacklisted = guild.LogBlacklist.Any(x => x == proxiedMessage.ChannelId || x == rootChannel.Id); + var isBlacklisted = guild.LogBlacklist.Any(x => x == proxiedMessage.Channel || x == rootChannel.Id); // if (ctx.SystemId == null || // removed the above, there shouldn't be a way to get to this code path if you don't have a system registered