From 3520a650997efa9c5666d4efb4e05e1ba954d70d Mon Sep 17 00:00:00 2001 From: James Ross Date: Mon, 18 Mar 2024 01:16:54 +0000 Subject: [PATCH] Restore lost continue statement (#4965) Commit 140b769a42156b476b92edc5eb8cbff3455c6bd0 separated the `continue` from its block, so this puts it back --- supervisor/misc/tasks.py | 1 + 1 file changed, 1 insertion(+) diff --git a/supervisor/misc/tasks.py b/supervisor/misc/tasks.py index deea99dcd..772ba1302 100644 --- a/supervisor/misc/tasks.py +++ b/supervisor/misc/tasks.py @@ -105,6 +105,7 @@ class Tasks(CoreSysAttributes): addon.version, addon.latest_version, ) + continue # Delay auto-updates for a day in case of issues if utcnow() < addon.latest_version_timestamp + timedelta(days=1): continue