mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-03 08:10:37 +00:00
Don't process a watch if it was paused AFTER being queued
This commit is contained in:
@@ -122,7 +122,7 @@ class update_worker(threading.Thread):
|
||||
else:
|
||||
self.current_uuid = uuid
|
||||
|
||||
if uuid in list(self.datastore.data['watching'].keys()):
|
||||
if uuid in list(self.datastore.data['watching'].keys()) and not not self.datastore.data['watching'][uuid].get('paused'):
|
||||
changed_detected = False
|
||||
contents = b''
|
||||
screenshot = False
|
||||
|
||||
Reference in New Issue
Block a user