fixed a very old log commands bug thanks to ttshivers
This commit is contained in:
parent
bf8f7c1986
commit
36515432e6
@ -98,7 +98,7 @@ namespace NadekoBot.Services.Database.Repositories.Impl
|
|||||||
{
|
{
|
||||||
var config = _set.Include(gc => gc.LogSetting)
|
var config = _set.Include(gc => gc.LogSetting)
|
||||||
.ThenInclude(gc => gc.IgnoredChannels)
|
.ThenInclude(gc => gc.IgnoredChannels)
|
||||||
.FirstOrDefault();
|
.FirstOrDefault(x => x.GuildId == guildId);
|
||||||
|
|
||||||
if (config == null)
|
if (config == null)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user