Use GET for uptime-kuma
This commit is contained in:
parent
6fada9d3fc
commit
8b7f223493
8
index.js
8
index.js
|
@ -433,16 +433,12 @@ xmpp.on("stanza", (stanza) => {
|
||||||
|
|
||||||
xmpp.on("online", async (address) => {
|
xmpp.on("online", async (address) => {
|
||||||
if (config["uptime-kuma"].enabled) {
|
if (config["uptime-kuma"].enabled) {
|
||||||
fetch(config["uptime-kuma"].url, {
|
fetch(config["uptime-kuma"].url).then(() => {
|
||||||
method: 'POST'
|
|
||||||
}).then(() => {
|
|
||||||
console.log(`${colors.cyan("[INFO]")} Sent heartbeat to Uptime Kuma`)
|
console.log(`${colors.cyan("[INFO]")} Sent heartbeat to Uptime Kuma`)
|
||||||
})
|
})
|
||||||
setInterval(() => {
|
setInterval(() => {
|
||||||
// Send POST request to config["uptime-kuma"].url
|
// Send POST request to config["uptime-kuma"].url
|
||||||
fetch(config["uptime-kuma"].url, {
|
fetch(config["uptime-kuma"].url).then(() => {
|
||||||
method: 'POST'
|
|
||||||
}).then(() => {
|
|
||||||
console.log(`${colors.cyan("[INFO]")} Sent heartbeat to Uptime Kuma`)
|
console.log(`${colors.cyan("[INFO]")} Sent heartbeat to Uptime Kuma`)
|
||||||
})
|
})
|
||||||
}, config["uptime-kuma"].interval * 1000) // Every X seconds
|
}, config["uptime-kuma"].interval * 1000) // Every X seconds
|
||||||
|
|
Loading…
Reference in a new issue