mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 18:06:14 +03:00
add version to user agent
This commit is contained in:
parent
2d176a38af
commit
6a8ccf627a
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ const { tcping, ping, checkCertificate, checkStatusCode } = require("../util-ser
|
|||
const { R } = require("redbean-node");
|
||||
const { BeanModel } = require("redbean-node/dist/bean-model");
|
||||
const { Notification } = require("../notification")
|
||||
const version = require("../package.json").version;
|
||||
|
||||
/**
|
||||
* status:
|
||||
|
@ -113,7 +114,7 @@ class Monitor extends BeanModel {
|
|||
timeout: this.interval * 1000 * 0.8,
|
||||
headers: {
|
||||
"Accept": "*/*",
|
||||
"User-Agent": "Uptime-Kuma",
|
||||
"User-Agent": "Uptime-Kuma/" + version,
|
||||
},
|
||||
httpsAgent: new https.Agent({
|
||||
maxCachedSessions: 0,
|
||||
|
|
Loading…
Reference in a new issue