From 256e328e9823879af01bef87a5703a6af0d22731 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sat, 23 Jul 2022 16:57:24 +0200 Subject: [PATCH] Improve title --- 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 3a6820b39..11e4f5038 100644 --- a/changedetectionio/update_worker.py +++ b/changedetectionio/update_worker.py @@ -26,7 +26,7 @@ class update_worker(threading.Thread): threshold = self.datastore.data['settings']['application'].get('filter_failure_notification_threshold_attempts') watch = self.datastore.data['watching'].get(uuid, False) - n_object = {'notification_title': 'CSS/xPath filter was not present in the page', + n_object = {'notification_title': 'Changedetection.io - Alert - CSS/xPath filter was not present in the page', 'notification_body': "Your configured filter of '{}' for {{watch_url}} did not appear on the page after {} attempts, did the page change layout?\n\nLink: {{base_url}}/edit/{{watch_uuid}}\n\nYour omniscient changedetection.io installation :)".format( watch['css_filter'], threshold),