From 8febff9282e3622b92bd420822ca3f9ec1f80d0e Mon Sep 17 00:00:00 2001 From: Alvin Pergens Date: Fri, 28 Jan 2022 15:35:33 +0100 Subject: [PATCH] fix comments --- server/notification-providers/alerta.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/notification-providers/alerta.js b/server/notification-providers/alerta.js index 3ee331ac1..f00d10980 100644 --- a/server/notification-providers/alerta.js +++ b/server/notification-providers/alerta.js @@ -50,7 +50,7 @@ class Alerta extends NotificationProvider { datadup.text = "Service " + monitorJSON["type"] + " is down."; await axios.post(alertaUrl, datadup, config); } else if (heartbeatJSON["status"] == UP) { - datadup.severity = notification.alertaRecoverState; // cleaner + datadup.severity = notification.alertaRecoverState; // cleaned datadup.text = "Service " + monitorJSON["type"] + " is up."; await axios.post(alertaUrl, datadup, config); }