inlined webhookURL

This commit is contained in:
JanK 2024-11-16 10:11:46 +01:00
parent be2f4621d3
commit a6188da3bc

View file

@ -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);