From 52987484cea6af56db6ec007bb97e8b7e56b5748 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 10 Sep 2025 15:02:10 +0200 Subject: [PATCH] New default notification --- changedetectionio/notification/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/notification/__init__.py b/changedetectionio/notification/__init__.py index 0129f2440..87fa400c1 100644 --- a/changedetectionio/notification/__init__.py +++ b/changedetectionio/notification/__init__.py @@ -2,8 +2,8 @@ from changedetectionio.model import default_notification_format_for_watch ult_notification_format_for_watch = 'System default' default_notification_format = 'HTML Color' -default_notification_body = '{{watch_url}} had a change.\n---\n{{diff}}\n---\n' -default_notification_title = 'ChangeDetection.io Notification - {{watch_url}}' +default_notification_body = '{{watch_title}} had a change.\n---\n{{diff}}\n---\n' +default_notification_title = 'ChangeDetection.io Notification - {{watch_title}}' # The values (markdown etc) are from apprise NotifyFormat, # But to avoid importing the whole heavy module just use the same strings here.