Fetching - False alerts issue #962 - be sure to avoid triggering changedetection when checksums were the same (#1410)

This commit is contained in:
dgtlmoon
2023-02-17 16:59:03 +01:00
committed by GitHub
parent 7b8b50138b
commit 900dc5ee78

View File

@@ -244,8 +244,9 @@ class update_worker(threading.Thread):
process_changedetection_results = True process_changedetection_results = True
except content_fetcher.checksumFromPreviousCheckWasTheSame as e: except content_fetcher.checksumFromPreviousCheckWasTheSame as e:
# Yes fine, so nothing todo # Yes fine, so nothing todo, don't continue to process.
pass process_changedetection_results = False
changed_detected = False
except content_fetcher.BrowserStepsStepTimout as e: except content_fetcher.BrowserStepsStepTimout as e: