From ba9013d9a91f5d6d9b5c40de162f363a49b94902 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 3 Oct 2025 22:16:51 -0600 Subject: [PATCH] Final touches! --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index 7106c92..0557233 100644 --- a/index.js +++ b/index.js @@ -592,7 +592,6 @@ app.put('/api/v1/user/route', (req, res) => { // Update route app.patch('/api/v1/user/update', async (req, res) => { // Update users server, port, auth, or secret via API key instead of session. Used for automated scripts const apiKey = req.headers['authorization'] ? req.headers['authorization'].replace('Bearer ', '') : null; - console.log(`API Key: ${apiKey}`); if (!apiKey) { res.status(401).json({ error: 'API Key is required!' }); return;