diff --git a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs index 06ebe4e8..1a44e3b4 100644 --- a/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs +++ b/src/NadekoBot/Modules/Administration/Commands/LogCommand.cs @@ -514,6 +514,9 @@ namespace NadekoBot.Modules.Administration if (channel == null) return Task.CompletedTask; + if (before.Content == after.Content) + return Task.CompletedTask; + LogSetting logSetting; if (!GuildLogSettings.TryGetValue(channel.Guild.Id, out logSetting) || !logSetting.IsLogging