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

This commit is contained in:
NihadBadalov 2024-02-15 11:00:48 +01:00
parent cf2d603e27
commit 04b55cd89a

View file

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