We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 563c196 commit 7d94535Copy full SHA for 7d94535
changedetectionio/flask_app.py
@@ -803,8 +803,9 @@ def edit_page(uuid):
803
# But in the case something is added we should save straight away
804
datastore.needs_write_urgent = True
805
806
- # Queue the watch for immediate recheck, with a higher priority
807
- update_q.put(queuedWatchMetaData.PrioritizedItem(priority=1, item={'uuid': uuid}))
+ if not datastore.data['watching'][uuid].get('paused'):
+ # Queue the watch for immediate recheck, with a higher priority
808
+ update_q.put(queuedWatchMetaData.PrioritizedItem(priority=1, item={'uuid': uuid}))
809
810
# Diff page [edit] link should go back to diff page
811
if request.args.get("next") and request.args.get("next") == 'diff':
0 commit comments