diff --git a/src/Modix.Services/DesignatedChannelService.cs b/src/Modix.Services/DesignatedChannelService.cs index 0343d33d..7e5fe71d 100644 --- a/src/Modix.Services/DesignatedChannelService.cs +++ b/src/Modix.Services/DesignatedChannelService.cs @@ -113,6 +113,7 @@ public async Task> GetDesignatedChannelIds(ulong guil .Set() .Where(x => x.GuildId == guildId) .Where(x => x.Type == type) + .Where(x => x.DeleteActionId == null) .Select(x => x.ChannelId) .ToListAsync(); }