Browse Source

Fix introduced potential TypeError with _get_command_error

pull/9932/head
Rapptz 7 months ago
parent
commit
c41cadfa91
  1. 3
      discord/app_commands/errors.py

3
discord/app_commands/errors.py

@ -498,7 +498,8 @@ def _get_command_error(
else:
errors = {key: ' '.join(x.get('message', '') for x in inner_errors)}
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
if isinstance(errors, dict):
messages.extend(f'{indentation} {k}: {v}' for k, v in errors.items())
class CommandSyncFailure(AppCommandError, HTTPException):

Loading…
Cancel
Save