From 3988db9bde59b058651167ac46a3d484d2fdc4d1 Mon Sep 17 00:00:00 2001 From: Elizabeth Cray Date: Mon, 27 Jul 2026 07:34:55 -0400 Subject: [PATCH] Fix missing define --- basicauth_serve.js | 1 + 1 file changed, 1 insertion(+) diff --git a/basicauth_serve.js b/basicauth_serve.js index b1e8548..a7a179f 100644 --- a/basicauth_serve.js +++ b/basicauth_serve.js @@ -105,6 +105,7 @@ app.all('/locations_full.geojson', (req, res) => { // Setup standard authentication variables let hazePwHash = null; let hazeUser = null; + let hazeSocketCounter = 0; let authHeader = req.headers['authorization']; let paramAuth = Buffer.from(authHeader.replace('Basic ', ''), 'base64').toString('utf-8'); hazeUser = paramAuth.split(":")[0];