diff --git a/src/Mewdeko/Modules/Server Management/Services/ChannelCommandService.cs b/src/Mewdeko/Modules/Server Management/Services/ChannelCommandService.cs index bff7e9b4b..e2bf3c19f 100644 --- a/src/Mewdeko/Modules/Server Management/Services/ChannelCommandService.cs +++ b/src/Mewdeko/Modules/Server Management/Services/ChannelCommandService.cs @@ -386,7 +386,7 @@ public async Task RestoreOriginalPermissions(IGuild guild) /// private static bool IsRelevantChannel(IGuildChannel channel) { - return channel is ITextChannel or IVoiceChannel or IForumChannel; + return channel is (ITextChannel or IVoiceChannel or IForumChannel) and not IThreadChannel; }