From 008272cd771c6b50504ea38ea1241079d3787d50 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sun, 11 Feb 2024 11:18:36 +0100 Subject: [PATCH] Puppeteer fetch - fixing exception names --- changedetectionio/update_worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/update_worker.py b/changedetectionio/update_worker.py index b4c33db1..819ef4b6 100644 --- a/changedetectionio/update_worker.py +++ b/changedetectionio/update_worker.py @@ -363,7 +363,7 @@ class update_worker(threading.Thread): process_changedetection_results = False changed_detected = False self.datastore.update_watch(uuid=uuid, update_obj={'last_error': False}) - except content_fetchers.exceptions.BrowserStepsStepException as e: + except content_fetchers.exceptions.BrowserConnectError as e: self.datastore.update_watch(uuid=uuid, update_obj={'last_error': e.msg }