From debee13a33f08fee7d5832311dc6b01319533c2f Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Thu, 24 Aug 2023 17:19:47 +0200 Subject: [PATCH] 'edit' submit should force recalculation of diff (should be moved to a different operation in the future) --- changedetectionio/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/changedetectionio/__init__.py b/changedetectionio/__init__.py index c1fcd0df..25329ae9 100644 --- a/changedetectionio/__init__.py +++ b/changedetectionio/__init__.py @@ -677,7 +677,8 @@ def changedetection_app(config=None, datastore_o=None): datastore.needs_write_urgent = True # Queue the watch for immediate recheck, with a higher priority - update_q.put(queuedWatchMetaData.PrioritizedItem(priority=1, item={'uuid': uuid, 'skip_when_checksum_same': True})) + # 'False' - fully reprocess the diff so we can see any new filters added + update_q.put(queuedWatchMetaData.PrioritizedItem(priority=1, item={'uuid': uuid, 'skip_when_checksum_same': False})) # Diff page [edit] link should go back to diff page if request.args.get("next") and request.args.get("next") == 'diff':