From d94c2bdf95190c80ea94cb23c3e11678da062071 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Mon, 12 Aug 2019 13:19:56 -0400 Subject: [PATCH] Removed unnecessary comment --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 2af14d1..5ee6cb7 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ http.createServer(app).listen(80); //global salt that is added to every ip before hashing to // make it even harder for someone to decode the ip -var globalSalt = "49cb0d52-1aec-4b89-85fc-fab2c53062fb"; // Should not be global +var globalSalt = "49cb0d52-1aec-4b89-85fc-fab2c53062fb"; //if so, it will use the x-forwarded header instead of the ip address of the connection var behindProxy = true; @@ -544,4 +544,4 @@ function getHash(value, times=5000) { } return value; -} \ No newline at end of file +}