We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb4b8c commit 021d31dCopy full SHA for 021d31d
src/Modix.Services/DesignatedChannelService.cs
@@ -113,6 +113,7 @@ public async Task<IReadOnlyCollection<ulong>> GetDesignatedChannelIds(ulong guil
113
.Set<DesignatedChannelMappingEntity>()
114
.Where(x => x.GuildId == guildId)
115
.Where(x => x.Type == type)
116
+ .Where(x => x.DeleteActionId == null)
117
.Select(x => x.ChannelId)
118
.ToListAsync();
119
}
0 commit comments