diff --git a/jarvis/client/events/message.py b/jarvis/client/events/message.py index bf60c6a..f9e9f10 100644 --- a/jarvis/client/events/message.py +++ b/jarvis/client/events/message.py @@ -394,7 +394,7 @@ class MessageEventMixin: if not after.author.bot: modlog = await Setting.find_one(q(guild=after.guild.id, setting="activitylog")) ignore = await Setting.find_one(q(guild=after.guild.id, setting="log_ignore")) - if modlog and (ignore and after.channel.id not in ignore.value): + if modlog and (not ignore or (ignore and after.channel.id not in ignore.value)): if not before or before.content == after.content or before.content is None: return try: