diff --git a/src/NadekoBot/Modules/Administration/Mute/MuteService.cs b/src/NadekoBot/Modules/Administration/Mute/MuteService.cs index a520f1879..73bfb3623 100644 --- a/src/NadekoBot/Modules/Administration/Mute/MuteService.cs +++ b/src/NadekoBot/Modules/Administration/Mute/MuteService.cs @@ -42,7 +42,8 @@ public class MuteService : INService { var guildIds = client.Guilds.Select(x => x.Id).ToList(); var configs = uow.Set() - .AsQueryable() + .AsNoTracking() + .AsSplitQuery() .Include(x => x.MutedUsers) .Include(x => x.UnbanTimer) .Include(x => x.UnmuteTimers)