Browse Source

Fix CommandSyncFailure raising for other 400 error types

pull/8444/head
Rapptz 3 years ago
parent
commit
5cc6af5917
  1. 2
      discord/app_commands/tree.py

2
discord/app_commands/tree.py

@ -1068,7 +1068,7 @@ class CommandTree(Generic[ClientT]):
else:
data = await self._http.bulk_upsert_guild_commands(self.client.application_id, guild.id, payload=payload)
except HTTPException as e:
if e.status == 400:
if e.status == 400 and e.code == 50035:
raise CommandSyncFailure(e, commands) from None
raise

Loading…
Cancel
Save