Browse Source

Fix detection of overridden binding error handler

Closes #8963
pull/8965/head
Rapptz 3 years ago
parent
commit
217662ca44
  1. 2
      discord/app_commands/commands.py

2
discord/app_commands/commands.py

@ -831,7 +831,7 @@ class Command(Generic[GroupT, P, T]):
return True
# Check if we have a bound error handler
if hasattr(self.binding, '__discord_app_commands_error_handler__'):
if getattr(self.binding, '__discord_app_commands_error_handler__', None) is not None:
return True
return False

Loading…
Cancel
Save