mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
goalert provider missing semicolon fix for linter
This commit is contained in:
parent
65e6921a41
commit
40b9d9ed17
|
@ -12,7 +12,7 @@ class GoAlert extends NotificationProvider {
|
|||
let parameters = {
|
||||
token: notification.goAlertToken,
|
||||
summary: msg,
|
||||
}
|
||||
};
|
||||
if (heartbeatJSON["status"] === UP) {
|
||||
parameters["action"] = closeAction;
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in a new issue