Browse Source

Update View timeout only if interaction_check passes

pull/8357/head
Rapptz 3 years ago
parent
commit
6327402730
  1. 6
      discord/ui/view.py

6
discord/ui/view.py

@ -413,15 +413,15 @@ class View:
async def _scheduled_task(self, item: Item, interaction: Interaction):
try:
if self.timeout:
self.__timeout_expiry = time.monotonic() + self.timeout
item._refresh_state(interaction.data) # type: ignore
allow = await self.interaction_check(interaction)
if not allow:
return
if self.timeout:
self.__timeout_expiry = time.monotonic() + self.timeout
await item.callback(interaction)
except Exception as e:
return await self.on_error(interaction, e, item)

Loading…
Cancel
Save