mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
[Ntfy] Only include action link if monitor url is defined #3274
This commit is contained in:
parent
36196f632d
commit
20b69acde2
|
@ -54,14 +54,17 @@ class Ntfy extends NotificationProvider {
|
||||||
"priority": priority,
|
"priority": priority,
|
||||||
"title": monitorJSON.name + " " + status + " [Uptime-Kuma]",
|
"title": monitorJSON.name + " " + status + " [Uptime-Kuma]",
|
||||||
"tags": tags,
|
"tags": tags,
|
||||||
"actions": [
|
};
|
||||||
|
|
||||||
|
if (monitorJSON.url) {
|
||||||
|
data.actions = [
|
||||||
{
|
{
|
||||||
"action": "view",
|
"action": "view",
|
||||||
"label": "Open " + monitorJSON.name,
|
"label": "Open " + monitorJSON.name,
|
||||||
"url": monitorJSON.url,
|
"url": monitorJSON.url,
|
||||||
|
},
|
||||||
|
];
|
||||||
}
|
}
|
||||||
]
|
|
||||||
};
|
|
||||||
|
|
||||||
if (notification.ntfyIcon) {
|
if (notification.ntfyIcon) {
|
||||||
data.icon = notification.ntfyIcon;
|
data.icon = notification.ntfyIcon;
|
||||||
|
|
Loading…
Reference in a new issue