diff --git a/changedetectionio/update_worker.py b/changedetectionio/update_worker.py index ccb01097..c0ca06e5 100644 --- a/changedetectionio/update_worker.py +++ b/changedetectionio/update_worker.py @@ -212,9 +212,7 @@ class update_worker(threading.Thread): if e.page_text: self.datastore.save_error_text(watch_uuid=uuid, contents=e.page_text) - self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text, - # So that we get a trigger when the content is added again - 'previous_md5': ''}) + self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text}) process_changedetection_results = False except FilterNotFoundInResponse as e: @@ -222,9 +220,7 @@ class update_worker(threading.Thread): continue err_text = "Warning, no filters were found, no change detection ran." - self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text, - # So that we get a trigger when the content is added again - 'previous_md5': ''}) + self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text}) # Only when enabled, send the notification if self.datastore.data['watching'][uuid].get('filter_failure_notification_send', False): @@ -254,9 +250,7 @@ class update_worker(threading.Thread): continue err_text = "Warning, browser step at position {} could not run, target not found, check the watch, add a delay if necessary.".format(e.step_n+1) - self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text, - # So that we get a trigger when the content is added again - 'previous_md5': ''}) + self.datastore.update_watch(uuid=uuid, update_obj={'last_error': err_text}) if self.datastore.data['watching'][uuid].get('filter_failure_notification_send', False):