Browse Source
Fix AutoMod audit log entry error due to empty channel_id
pull/9386/head
Lilly Rose Berner
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
1 deletions
-
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( |
|
|
|