Browse Source

Fix AuditLogEntry.target being incorrect for bulk message delete

Fixes #6851
pull/6855/head
Rapptz 4 years ago
parent
commit
b32ad3de37
  1. 2
      discord/enums.py

2
discord/enums.py

@ -373,6 +373,8 @@ class AuditLogAction(Enum):
return 'webhook'
elif v < 70:
return 'emoji'
elif v == 73:
return 'channel'
elif v < 80:
return 'message'
elif v < 90:

Loading…
Cancel
Save