Browse Source

Return new instance in Poll.end to avoid inconsistencies

pull/10082/head
Nathan Waxman-Jeng 3 months ago
committed by GitHub
parent
commit
fa1cc00a29
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      discord/poll.py

4
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

Loading…
Cancel
Save