Update uptimerobot.js

This commit is contained in:
墨明 2023-03-24 10:58:32 +08:00 committed by GitHub
parent 04cc0baf46
commit 225b377559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ export async function GetMonitors(apikey, days) {
custom_uptime_ranges: ranges.join('-'),
};
const response = await axios.post('https://cors.status.org.cn/uptimerobot/v2/getMonitors', postdata, {
const response = await axios.post('https://uptimestatus.qikaile.tk/v2/getMonitors', postdata, {
timeout: 10000
});
if (response.data.stat !== 'ok') {
@ -108,4 +108,4 @@ export async function GetMonitors(apikey, days) {
};
return result;
});
}
}