Browse Source

Fix Modal not raising when hitting the 5 item limit

pull/10278/head
Rapptz 3 days ago
parent
commit
9677dada1f
  1. 5
      discord/ui/modal.py

5
discord/ui/modal.py

@ -235,3 +235,8 @@ class Modal(BaseView):
}
return payload
def add_item(self, item: Item[Any]) -> Self:
if len(self._children) >= 5:
raise ValueError('maximum number of children exceeded (5)')
return super().add_item(item)

Loading…
Cancel
Save