From 357567c5b49dcd000b2bece820850dbf4e73a9a4 Mon Sep 17 00:00:00 2001 From: Edge-Seven <143301646+Edge-Seven@users.noreply.github.com> Date: Tue, 18 Nov 2025 16:07:54 +0700 Subject: [PATCH] docs: fix typo in server/modules/axios-ntlm/lib/hash.js (#6363) Co-authored-by: khanhkhanhlele Co-authored-by: Frank Elsinga --- server/modules/axios-ntlm/lib/hash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);