|
|
|
@ -434,7 +434,7 @@ class Monitor extends BeanModel {
|
|
|
|
|
const options = {
|
|
|
|
|
url: this.url,
|
|
|
|
|
method: (this.method || "get").toLowerCase(),
|
|
|
|
|
timeout: this.timeout,
|
|
|
|
|
timeout: this.timeout * 1000,
|
|
|
|
|
headers: {
|
|
|
|
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9",
|
|
|
|
|
"User-Agent": "Uptime-Kuma/" + version,
|
|
|
|
@ -654,7 +654,7 @@ class Monitor extends BeanModel {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let res = await axios.get(steamApiUrl, {
|
|
|
|
|
timeout: this.timeout,
|
|
|
|
|
timeout: this.timeout * 1000,
|
|
|
|
|
headers: {
|
|
|
|
|
"Accept": "*/*",
|
|
|
|
|
"User-Agent": "Uptime-Kuma/" + version,
|
|
|
|
|