Don't process a watch if it was paused AFTER being queued

This commit is contained in:
dgtlmoon
2022-08-08 20:04:13 +02:00
parent a7d005109f
commit e95e5047fd
+1 -1
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 not self.datastore.data['watching'][uuid].get('paused'):
changed_detected = False
contents = b''
screenshot = False