From 34a434b2afb605fb3cb7884608394c258b6ef962 Mon Sep 17 00:00:00 2001 From: Lilly Rose Berner Date: Wed, 3 May 2023 02:19:21 +0200 Subject: [PATCH] Fix AutoMod audit log entry error due to empty channel_id --- discord/audit_logs.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/discord/audit_logs.py b/discord/audit_logs.py index 17f308c45..eebcecfbd 100644 --- a/discord/audit_logs.py +++ b/discord/audit_logs.py @@ -652,7 +652,9 @@ class AuditLogEntry(Hashable): ): channel_id = utils._get_as_snowflake(extra, 'channel_id') channel = None - if channel_id is not None: + + # May be an empty string instead of None due to a Discord issue + if channel_id: channel = self.guild.get_channel_or_thread(channel_id) or Object(id=channel_id) self.extra = _AuditLogProxyAutoModAction(