Don't process a watch if it was paused after being queued (#825)

This commit is contained in:
dgtlmoon
2022-08-09 10:48:18 +02:00
committed by GitHub
parent a7d005109f
commit 034b1330d4

View File

@@ -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 self.datastore.data['watching'][uuid].get('paused'):
changed_detected = False
contents = b''
screenshot = False