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

pull/833/head
dgtlmoon 2 years ago committed by GitHub
parent a7d005109f
commit 034b1330d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save