mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
inlined webhookURL
This commit is contained in:
parent
be2f4621d3
commit
a6188da3bc
1 changed files with 2 additions and 3 deletions
|
@ -10,7 +10,6 @@ class Pumble extends NotificationProvider {
|
||||||
*/
|
*/
|
||||||
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
||||||
const okMsg = "Sent Successfully.";
|
const okMsg = "Sent Successfully.";
|
||||||
let webhookUrl = notification.pumblewebhookURL;
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (heartbeatJSON === null && monitorJSON === null) {
|
if (heartbeatJSON === null && monitorJSON === null) {
|
||||||
|
@ -26,7 +25,7 @@ class Pumble extends NotificationProvider {
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
await axios.post(webhookUrl, data);
|
await axios.post(notification.webhookURL, data);
|
||||||
return okMsg;
|
return okMsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,7 +40,7 @@ class Pumble extends NotificationProvider {
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
await axios.post(webhookUrl, data);
|
await axios.post(notification.webhookURL, data);
|
||||||
return okMsg;
|
return okMsg;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.throwGeneralAxiosError(error);
|
this.throwGeneralAxiosError(error);
|
||||||
|
|
Loading…
Reference in a new issue