From 616bf2f29ab839797803c6d2b2f929c2703e4745 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Fri, 3 Oct 2025 22:10:23 -0600 Subject: [PATCH] Fix that possibly? --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 45bd541..57440e3 100644 --- a/index.js +++ b/index.js @@ -592,6 +592,7 @@ 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']; + console.log(`API Key: ${apiKey}`); if (!apiKey) { res.status(401).json({ error: 'Unauthorized' }); return;