From 37aef0530a2e5542b23db44e65196cb4c46d9f7f Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 6 Dec 2022 18:29:09 +0100 Subject: [PATCH] Notification templates - bug in update, was updating the main system instead of the watch notification_title incorrectly --- changedetectionio/store.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/store.py b/changedetectionio/store.py index 1d9bbb15..69623980 100644 --- a/changedetectionio/store.py +++ b/changedetectionio/store.py @@ -637,7 +637,7 @@ class ChangeDetectionStore: n_title = watch.get('notification_title') if n_title: - self.data['settings']['application']['notification_title'] = re.sub(r, r'{{\1}}', n_title) + watch['notification_title'] = re.sub(r, r'{{\1}}', n_title) n_urls = watch.get('notification_urls') if n_urls: