diff --git a/server/modules/axios-ntlm/lib/hash.js b/server/modules/axios-ntlm/lib/hash.js index 4e5aa26b4..4addb5f54 100644 --- a/server/modules/axios-ntlm/lib/hash.js +++ b/server/modules/axios-ntlm/lib/hash.js @@ -82,7 +82,7 @@ function createNTLMv2Response(type2message, username, ntlmhash, nonce, targetNam //reserved buf.writeUInt32LE(0, 20); //timestamp - //TODO: we are loosing precision here since js is not able to handle those large integers + //TODO: we are losing precision here since js is not able to handle those large integers // maybe think about a different solution here // 11644473600000 = diff between 1970 and 1601 var timestamp = ((Date.now() + 11644473600000) * 10000).toString(16);