Browse Source
Fix Webhook poll sending raising AttributeError with a mocked state
pull/9833/head
DA344
11 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
0 deletions
-
discord/webhook/async_.py
|
|
@ -721,6 +721,11 @@ class _WebhookState: |
|
|
|
return self._parent._get_guild(guild_id) |
|
|
|
return None |
|
|
|
|
|
|
|
def _get_poll(self, msg_id: Optional[int]) -> Optional[Poll]: |
|
|
|
if self._parent is not None: |
|
|
|
return self._parent._get_poll(msg_id) |
|
|
|
return None |
|
|
|
|
|
|
|
def store_user(self, data: Union[UserPayload, PartialUserPayload], *, cache: bool = True) -> BaseUser: |
|
|
|
if self._parent is not None: |
|
|
|
return self._parent.store_user(data, cache=cache) |
|
|
|