Browse Source

Merge pull request #698 from erktime/master

Add monitor name context to Slack fallback text.
pull/709/head
Louis Lam 3 years ago
committed by GitHub
parent
commit
c9b4d2ae2a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      server/notification-providers/slack.js

3
server/notification-providers/slack.js

@ -39,8 +39,9 @@ class Slack extends NotificationProvider {
}
const time = heartbeatJSON["time"];
const textMsg = "Uptime Kuma Alert";
let data = {
"text": "Uptime Kuma Alert",
"text": monitorJSON ? textMsg + `: ${monitorJSON.name}` : textMsg,
"channel": notification.slackchannel,
"username": notification.slackusername,
"icon_emoji": notification.slackiconemo,

Loading…
Cancel
Save