Check for ping and port type in discord notifs

pull/1471/head
jordanbertasso 3 years ago
parent ce7d8c38c5
commit 0961c6d9b3

@ -24,14 +24,17 @@ class Discord extends NotificationProvider {
let url; let url;
if (monitorJSON["type"] === "port") { switch (monitorJSON["type"]) {
url = monitorJSON["hostname"]; case "port":
if (monitorJSON["port"]) { case "ping":
url += ":" + monitorJSON["port"]; url = monitorJSON["hostname"];
} if (monitorJSON["port"]) {
url += ":" + monitorJSON["port"];
} else { }
url = monitorJSON["url"]; break;
default:
url = monitorJSON["url"];
break;
} }
// If heartbeatJSON is not null, we go into the normal alerting loop. // If heartbeatJSON is not null, we go into the normal alerting loop.

Loading…
Cancel
Save