From 1f250aa8683cb7f190990bb9df0199c8def93130 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Mon, 15 Aug 2022 21:46:18 +0200 Subject: [PATCH] Revert "don't process paused entries after queue", so we can still manually recheck a paused watch --- changedetectionio/update_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/update_worker.py b/changedetectionio/update_worker.py index 5596fcb1..d6c990ec 100644 --- a/changedetectionio/update_worker.py +++ b/changedetectionio/update_worker.py @@ -131,7 +131,7 @@ class update_worker(threading.Thread): else: self.current_uuid = uuid - if uuid in list(self.datastore.data['watching'].keys()) and not self.datastore.data['watching'][uuid].get('paused'): + if uuid in list(self.datastore.data['watching'].keys()): changed_detected = False contents = b'' screenshot = False