From a89ffffc7659f09959182f99c89645bb8fe39fea Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 24 Feb 2022 16:49:48 +0100 Subject: [PATCH] "Recheck" button should work when entry is in paused state --- changedetectionio/store.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/changedetectionio/store.py b/changedetectionio/store.py index 5b69a955..86081735 100644 --- a/changedetectionio/store.py +++ b/changedetectionio/store.py @@ -184,10 +184,6 @@ class ChangeDetectionStore: def update_watch(self, uuid, update_obj): - # Skip if 'paused' state - if self.__data['watching'][uuid]['paused']: - return - with self.lock: # In python 3.9 we have the |= dict operator, but that still will lose data on nested structures...