Skip to content

Commit

Permalink
Update main.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-blackson committed Mar 5, 2024
1 parent d134e17 commit 41e6627
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand All @@ -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
Expand Down

0 comments on commit 41e6627

Please sign in to comment.