mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-09-25 14:55:59 +00:00
fix broken logic
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user