From b2b199d24717cad669716d6bc4300a285516cc29 Mon Sep 17 00:00:00 2001 From: SillyLossy Date: Wed, 5 Apr 2023 12:53:57 +0300 Subject: [PATCH] Unauthorized status --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 852973812..9ec20445d 100644 --- a/server.js +++ b/server.js @@ -1641,7 +1641,7 @@ app.post('/status_poe', jsonParser, async (request, response) => { return response.send({'bot_names': botNames}); } catch { - return response.sendStatus(500); + return response.sendStatus(401); } });