From cbbd3e20ad10e01fd06a543909805d2405d48211 Mon Sep 17 00:00:00 2001 From: Michael Telgkamp Date: Wed, 1 Mar 2023 23:05:23 +0100 Subject: [PATCH] Codestyle: Add trailing comma --- server/notification-providers/ntfy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/notification-providers/ntfy.js b/server/notification-providers/ntfy.js index 2f2c7dc5c..b21e98005 100644 --- a/server/notification-providers/ntfy.js +++ b/server/notification-providers/ntfy.js @@ -22,7 +22,7 @@ class Ntfy extends NotificationProvider { "title": (monitorJSON?.name || notification.ntfytopic) + " [Uptime-Kuma]", "message": msg, "priority": notification.ntfyPriority, - "tags": [ "test_tube" ] + "tags": [ "test_tube" ], }; await axios.post(`${notification.ntfyserverurl}`, ntfyTestData, { headers: headers }); return okMsg; @@ -51,7 +51,7 @@ class Ntfy extends NotificationProvider { { "action": "view", "label": "Open " + monitorJSON.name, - "url": monitorJSON.url + "url": monitorJSON.url, } ] };