From 14765b46bd216acac9799d08937b8ffb083bd6b6 Mon Sep 17 00:00:00 2001 From: bwees Date: Thu, 28 Jul 2022 20:48:20 -0400 Subject: [PATCH] fix broken logic --- changedetectionio/fetch_site_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/fetch_site_status.py b/changedetectionio/fetch_site_status.py index 2cf6639b7..551cb5a5a 100644 --- a/changedetectionio/fetch_site_status.py +++ b/changedetectionio/fetch_site_status.py @@ -289,7 +289,7 @@ class perform_site_check(): changed_detected = False # Only Deletions (additions are turned off) - elif not watch["trigger_add"] and not diff_types["add"] and diff_types["del"]: + elif not watch["trigger_add"] and diff_types["add"] and not diff_types["del"]: changed_detected = False # Always record the new checksum and the new text