From 41e6627ae064ed6cad34a645e04cfb8f982e8e81 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 5 Mar 2024 10:07:02 +0100 Subject: [PATCH] Update main.js --- main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index ac83332..4824316 100755 --- a/main.js +++ b/main.js @@ -1192,7 +1192,7 @@ async function processNotifications(alarms){ function prepareNotificationText(headline,description,date,region,level,identifier){ var notificationText = "" - notificationText += level +' ' + headline + region + ' (' + date + ') ' + description + notificationText += level + headline + region + ' (' + date + ') ' + description return notificationText } @@ -1202,7 +1202,7 @@ function sendNotification(headline,description,date,region,levelText,identifier, var descriptionText = "" var typeText = "" if (type == 'Update'){ - typeText = i18nHelper.update[lang] + ': ' + typeText = ' ' + i18nHelper.update[lang] + ': ' } if (!adapter.config.noDetails ){ descriptionText = description