Fix: Don't add `Service URL` Disord embed field if empty

pull/4495/head
NihadBadalov 2 months ago
parent cf2d603e27
commit 04b55cd89a

@ -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"],

Loading…
Cancel
Save