From 23796723dd2b6be3623b925d0f9e74b63cab9262 Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Fri, 21 Jan 2022 20:42:08 +1100 Subject: [PATCH] Address code review Add missing comma Co-authored-by: Adam Stachowicz --- server/notification-providers/techulus-push.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/techulus-push.js b/server/notification-providers/techulus-push.js index b6919da55..f844d17ce 100644 --- a/server/notification-providers/techulus-push.js +++ b/server/notification-providers/techulus-push.js @@ -11,7 +11,7 @@ class TechulusPush extends NotificationProvider { try { await axios.post(`https://push.techulus.com/api/v1/notify/${notification.pushAPIKey}`, { "title": "Uptime-Kuma", - "body": msg + "body": msg, }) return okMsg; } catch (error) {