Browse Source

change text to using variable `msg`

pull/650/head
wuwenjing 3 years ago
parent
commit
ce2df137e6
  1. 6
      server/notification-providers/feishu.js

6
server/notification-providers/feishu.js

@ -9,17 +9,15 @@ class Feishu extends NotificationProvider {
let okMsg = "Sent Successfully.";
let feishuWebHookUrl = notification.feishuWebHookUrl;
console.log(heartbeatJSON);
try {
if (heartbeatJSON == null) {
let testdata = {
msg_type: "text",
content: {
text: "Testing Successful.",
text: msg,
},
};
var t = await axios.post(feishuWebHookUrl, testdata);
console.log(t);
await axios.post(feishuWebHookUrl, testdata);
return okMsg;
}

Loading…
Cancel
Save