Browse Source

Fix views not being persistent if modifying custom_id after __init__

pull/8287/head
Varun J 3 years ago
committed by GitHub
parent
commit
c26473d0eb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      discord/ui/button.py
  2. 1
      discord/ui/select.py

1
discord/ui/button.py

@ -152,6 +152,7 @@ class Button(Item[V]):
raise TypeError('custom_id must be None or str')
self._underlying.custom_id = value
self._provided_custom_id = value is not None
@property
def url(self) -> Optional[str]:

1
discord/ui/select.py

@ -136,6 +136,7 @@ class Select(Item[V]):
raise TypeError('custom_id must be None or str')
self._underlying.custom_id = value
self._provided_custom_id = value is not None
@property
def placeholder(self) -> Optional[str]:

Loading…
Cancel
Save