From 8b2f489fbe421ad36e5fcf063a4d15cf7efab252 Mon Sep 17 00:00:00 2001 From: NoobishSVK Date: Mon, 20 May 2024 21:48:32 +0200 Subject: [PATCH] kick fix --- server/endpoints.js | 1 - 1 file changed, 1 deletion(-) diff --git a/server/endpoints.js b/server/endpoints.js index 2a588b6..758e41a 100644 --- a/server/endpoints.js +++ b/server/endpoints.js @@ -160,7 +160,6 @@ router.get('/logout', (req, res) => { router.get('/kick', (req, res) => { const ipAddress = req.query.ip; // Extract the IP address parameter from the query string // Terminate the WebSocket connection for the specified IP address - console.log(ipAddress); if(req.session.isAdminAuthenticated) { helpers.kickClient(ipAddress); }