Browse Source

Don't mark URL buttons as dispatchable

pull/7005/head
Rapptz 4 years ago
parent
commit
c811932ca7
  1. 2
      discord/ui/button.py

2
discord/ui/button.py

@ -206,7 +206,7 @@ class Button(Item[V]):
return self._underlying.to_dict()
def is_dispatchable(self) -> bool:
return True
return self.custom_id is not None
def refresh_component(self, button: ButtonComponent) -> None:
self._underlying = button

Loading…
Cancel
Save