cleaned up code

pull/1768/head
Christopher Pickering 2 years ago
parent 98f3c126e5
commit 660005b143
No known key found for this signature in database
GPG Key ID: E14DB3B0A0FACF84

4
package-lock.json generated

@ -1,12 +1,12 @@
{
"name": "uptime-kuma",
"version": "1.16.1",
"version": "1.17.0-beta.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "uptime-kuma",
"version": "1.16.1",
"version": "1.17.0-beta.0",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "~1.2.36",

@ -279,17 +279,12 @@ class Monitor extends BeanModel {
if (this.auth_method === "ntlm") {
options.httpsAgent.keepAlive = true;
let ntlmOptions = {
res = await httpNtlm(options, {
username: this.basic_auth_user,
password: this.basic_auth_pass,
domain: this.authDomain,
};
if (this.authWorkstation) {
ntlmOptions.workstation = this.authWorkstation;
}
res = await httpNtlm(options, ntlmOptions);
workstation: this.authWorkstation ? this.authWorkstation : undefined
});
} else {
res = await axiosClient.request(options);

Loading…
Cancel
Save