Browse Source

Add pre-conditions to avoid on_timeout being called after stop()

Apparently the cancellation request for a TimerHandle doesn't
necessarily have to be honoured despite large periods of time passing
pull/7027/head
Rapptz 4 years ago
parent
commit
81e9d70b7b
  1. 6
      discord/ui/view.py

6
discord/ui/view.py

@ -314,8 +314,10 @@ class View:
self._timeout_handler = loop.call_later(self.timeout, self.dispatch_timeout)
def dispatch_timeout(self):
if not self._stopped.done():
self._stopped.set_result(True)
if self._stopped.done():
return
self._stopped.set_result(True)
asyncio.create_task(self.on_timeout(), name=f'discord-ui-view-timeout-{self.id}')
def dispatch(self, state: Any, item: Item, interaction: Interaction):

Loading…
Cancel
Save