From a3c1738eeaa3405d12c1c2f3102a24f3d15ebe3c Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 27 Jul 2018 10:13:19 +0200 Subject: [PATCH] [Server>Middlewares>Follows] Changing error code 400 to 500 Follows on http server is a server error not an error of the client. --- server/middlewares/validators/follows.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/middlewares/validators/follows.ts b/server/middlewares/validators/follows.ts index bdf39eb9c..040ee1f21 100644 --- a/server/middlewares/validators/follows.ts +++ b/server/middlewares/validators/follows.ts @@ -14,7 +14,7 @@ const followValidator = [ (req: express.Request, res: express.Response, next: express.NextFunction) => { // Force https if the administrator wants to make friends if (isTestInstance() === false && CONFIG.WEBSERVER.SCHEME === 'http') { - return res.status(400) + return res.status(500) .json({ error: 'Cannot follow on a non HTTPS web server.' })