From d6cda031d37ca71db72b425244e1ae36deae638d Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Fri, 20 Oct 2023 11:08:30 +0200 Subject: [PATCH] bugfix - [clear history] was not clearing all metadata --- changedetectionio/store.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/changedetectionio/store.py b/changedetectionio/store.py index 9f376df91..bb3dad7b9 100644 --- a/changedetectionio/store.py +++ b/changedetectionio/store.py @@ -244,12 +244,15 @@ class ChangeDetectionStore: import pathlib self.__data['watching'][uuid].update({ - 'last_checked': 0, + 'check_count': 0, + 'fetch_time': 0.0, 'has_ldjson_price_data': None, + 'last_checked': 0, 'last_error': False, 'last_notification_error': False, 'last_viewed': 0, 'previous_md5': False, + 'previous_md5_before_filters': False, 'track_ldjson_price_data': None, })