From b308b54b8998537912e037643d66f9b6d18fac8b Mon Sep 17 00:00:00 2001 From: Lilly Rose Berner Date: Mon, 7 Mar 2022 23:35:42 +0100 Subject: [PATCH] [tasks] Fix change_interval raising when called during execution --- discord/ext/tasks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ext/tasks/__init__.py b/discord/ext/tasks/__init__.py index 030916206..8d8090130 100644 --- a/discord/ext/tasks/__init__.py +++ b/discord/ext/tasks/__init__.py @@ -692,7 +692,7 @@ class Loop(Generic[LF]): self._prepare_time_index(now=self._last_iteration) self._next_iteration = self._get_next_sleep_time() - if not self._handle.done(): + if self._handle is not MISSING and not self._handle.done(): # the loop is sleeping, recalculate based on new interval self._handle.recalculate(self._next_iteration)