mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 23:04:04 +00:00
Fix Slack notifications when URL is present (#4871)
This commit is contained in:
commit
ae224f9e18
1 changed files with 3 additions and 2 deletions
|
@ -48,7 +48,8 @@ class Slack extends NotificationProvider {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (monitorJSON.url) {
|
const address = this.extractAdress(monitorJSON);
|
||||||
|
if (address) {
|
||||||
actions.push({
|
actions.push({
|
||||||
"type": "button",
|
"type": "button",
|
||||||
"text": {
|
"text": {
|
||||||
|
@ -56,7 +57,7 @@ class Slack extends NotificationProvider {
|
||||||
"text": "Visit site",
|
"text": "Visit site",
|
||||||
},
|
},
|
||||||
"value": "Site",
|
"value": "Site",
|
||||||
"url": monitorJSON.url,
|
"url": address,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue