diff --git a/server/notification-providers/discord.js b/server/notification-providers/discord.js index f24cd616..bc811d87 100644 --- a/server/notification-providers/discord.js +++ b/server/notification-providers/discord.js @@ -58,10 +58,10 @@ class Discord extends NotificationProvider { name: "Service Name", value: monitorJSON["name"], }, - { + ...((monitorJSON["type"] === "push" || address !== "https://") ? [{ name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL", value: monitorJSON["type"] === "push" ? "Heartbeat" : address, - }, + }] : []), { name: `Time (${heartbeatJSON["timezone"]})`, value: heartbeatJSON["localDateTime"], @@ -93,10 +93,10 @@ class Discord extends NotificationProvider { name: "Service Name", value: monitorJSON["name"], }, - { + ...(monitorJSON["type"] === "push" || address !== "https://") ? [{ name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL", value: monitorJSON["type"] === "push" ? "Heartbeat" : address, - }, + }] : [], { name: `Time (${heartbeatJSON["timezone"]})`, value: heartbeatJSON["localDateTime"],