mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-27 16:54:04 +00:00
fix discord notification not sending when docker container is down
This commit is contained in:
parent
39987ba9ac
commit
f32441e2f6
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class Discord extends NotificationProvider {
|
|||
},
|
||||
{
|
||||
name: "Error",
|
||||
value: heartbeatJSON["msg"],
|
||||
value: heartbeatJSON["msg"] == null ? "N/A" : heartbeatJSON["msg"],
|
||||
},
|
||||
],
|
||||
}],
|
||||
|
|
Loading…
Reference in a new issue