From 19ee65361d2cba9add66fb1f184c81452df3277e Mon Sep 17 00:00:00 2001 From: Conner <59540839+TheConner@users.noreply.github.com> Date: Wed, 24 Jan 2024 14:45:45 -0500 Subject: [PATCH] Notifications - Bugfix: Notification format not being set correct (HTML emails being sent as plaintext and other problems) (#2129) --- changedetectionio/flask_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changedetectionio/flask_app.py b/changedetectionio/flask_app.py index 360eff0e..b85d18b3 100644 --- a/changedetectionio/flask_app.py +++ b/changedetectionio/flask_app.py @@ -1603,7 +1603,7 @@ def notification_runner(): n_object['notification_title'] = datastore.data['settings']['application'].get('notification_title') if not n_object.get('notification_format') and datastore.data['settings']['application'].get('notification_format'): - n_object['notification_title'] = datastore.data['settings']['application'].get('notification_format') + n_object['notification_format'] = datastore.data['settings']['application'].get('notification_format') sent_obj = notification.process_notification(n_object, datastore)