Compare commits

...

2 Commits

Author SHA1 Message Date
dgtlmoon
93caf360ed oops 2022-08-08 20:06:05 +02:00
dgtlmoon
e95e5047fd Don't process a watch if it was paused AFTER being queued 2022-08-08 20:04:13 +02:00

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