From e12642cf2116b03a102d0a477196430b9ae142fc Mon Sep 17 00:00:00 2001 From: Christian Meis Date: Wed, 28 Sep 2022 10:24:56 +0200 Subject: [PATCH] Fix double quotes in fallback for no icon url in ntfy notification provider settings --- server/notification-providers/ntfy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/ntfy.js b/server/notification-providers/ntfy.js index 3d0095086..3288d8fb7 100644 --- a/server/notification-providers/ntfy.js +++ b/server/notification-providers/ntfy.js @@ -13,7 +13,7 @@ class Ntfy extends NotificationProvider { "message": msg, "priority": notification.ntfyPriority || 4, "title": "Uptime-Kuma", - "icon": notification.ntfyIcon || '', + "icon": notification.ntfyIcon || "", }); return okMsg;