Browse Source

Fix NameError in audit log target for app commands

pull/9229/head
Rapptz 2 years ago
parent
commit
1395d3b495
  1. 3
      discord/audit_logs.py

3
discord/audit_logs.py

@ -818,6 +818,9 @@ class AuditLogEntry(Hashable):
target = self._get_integration_by_app_id(target_id) or self._get_app_command(target_id)
if not target:
try:
# circular import
from .app_commands import AppCommand
# get application id from extras
# if it matches target id, type should be integration
target_app = self.extra

Loading…
Cancel
Save