Fix double quotes in fallback for no icon url in ntfy notification provider settings

This commit is contained in:
Christian Meis 2022-09-28 10:24:56 +02:00
parent 618d904001
commit e12642cf21

View file

@ -13,7 +13,7 @@ class Ntfy extends NotificationProvider {
"message": msg, "message": msg,
"priority": notification.ntfyPriority || 4, "priority": notification.ntfyPriority || 4,
"title": "Uptime-Kuma", "title": "Uptime-Kuma",
"icon": notification.ntfyIcon || '', "icon": notification.ntfyIcon || "",
}); });
return okMsg; return okMsg;