From bcb001eaeaba4cc130182f9d0fc177a78a861f2d Mon Sep 17 00:00:00 2001 From: biglyderv Date: Fri, 18 Apr 2025 15:47:33 -0400 Subject: [PATCH] remove ip logging, this was accidentally left in during testing --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 24cb45b..6e7117a 100644 --- a/index.js +++ b/index.js @@ -15,7 +15,6 @@ app.use(express.static('static')); app.post('/', async function (req, res) { let ip = req.headers['X-Real-IP'] || req.ip; let id = 'web:' + createHash('sha256').update(ip).digest('hex'); - console.log(ip); id = id.slice(0, 24); if (!sessions[id]) {