From 72740ba477db016cae89dffceaab6f9f397e8c74 Mon Sep 17 00:00:00 2001 From: Thies <37243142+Thiesjoo@users.noreply.github.com> Date: Wed, 25 Aug 2021 14:08:41 +0200 Subject: [PATCH] Update the styling to better match existing styles Co-authored-by: Adam Stachowicz --- server/notification.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/server/notification.js b/server/notification.js index d81920e2..8fb10a38 100644 --- a/server/notification.js +++ b/server/notification.js @@ -95,8 +95,11 @@ class Notification { await axios.post(notification.discordWebhookUrl, discordtestdata) return okMsg; } + let url = monitorJSON["url"] === "https://" ? monitorJSON["hostname"] : monitorJSON["url"] - if (monitorJSON["port"]) url += ":" + monitorJSON[port] + if (monitorJSON["port"]) { + url += ":" + monitorJSON[port]; + } // If heartbeatJSON is not null, we go into the normal alerting loop. if (heartbeatJSON["status"] == 0) {