Browse Source
Return new instance in Poll.end to avoid inconsistencies
pull/10082/head
Nathan Waxman-Jeng
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
1 deletions
-
discord/poll.py
|
|
@ -359,6 +359,7 @@ class Poll: |
|
|
|
# The message's poll contains the more up to date data. |
|
|
|
self._expiry = message.poll.expires_at |
|
|
|
self._finalized = message.poll._finalized |
|
|
|
self._answers = message.poll._answers |
|
|
|
|
|
|
|
def _update_results(self, data: PollResultPayload) -> None: |
|
|
|
self._finalized = data['is_finalized'] |
|
|
@ -568,6 +569,7 @@ class Poll: |
|
|
|
if not self._message or not self._state: # Make type checker happy |
|
|
|
raise ClientException('This poll has no attached message.') |
|
|
|
|
|
|
|
self._message = await self._message.end_poll() |
|
|
|
message = await self._message.end_poll() |
|
|
|
self._update(message) |
|
|
|
|
|
|
|
return self |
|
|
|