From 217662ca44147a4479c83132ece405b9a98e124d Mon Sep 17 00:00:00 2001 From: Rapptz Date: Tue, 27 Sep 2022 23:50:06 -0400 Subject: [PATCH] Fix detection of overridden binding error handler Closes #8963 --- discord/app_commands/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index 46582a17a..c77677e37 100644 --- a/discord/app_commands/commands.py +++ b/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