diff --git a/server/notification-providers/goalert.js b/server/notification-providers/goalert.js index 9a63ca5b..f3ab18d5 100644 --- a/server/notification-providers/goalert.js +++ b/server/notification-providers/goalert.js @@ -12,7 +12,7 @@ class GoAlert extends NotificationProvider { let parameters = { token: notification.goAlertToken, summary: msg, - } + }; if (heartbeatJSON["status"] === UP) { parameters["action"] = closeAction; } diff --git a/server/notification.js b/server/notification.js index e7afbdc9..3306a53a 100644 --- a/server/notification.js +++ b/server/notification.js @@ -38,7 +38,7 @@ const TechulusPush = require("./notification-providers/techulus-push"); const Telegram = require("./notification-providers/telegram"); const Webhook = require("./notification-providers/webhook"); const WeCom = require("./notification-providers/wecom"); -const GoAlert = require("./notification-providers/goalert") +const GoAlert = require("./notification-providers/goalert"); class Notification {