mirror of https://github.com/Chocobozzz/PeerTube
[Server>Middlewares>Follows] Changing error code 400 to 500
Follows on http server is a server error not an error of the client.pull/876/head
parent
646cfe74ee
commit
a3c1738eea
|
@ -14,7 +14,7 @@ const followValidator = [
|
||||||
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
(req: express.Request, res: express.Response, next: express.NextFunction) => {
|
||||||
// Force https if the administrator wants to make friends
|
// Force https if the administrator wants to make friends
|
||||||
if (isTestInstance() === false && CONFIG.WEBSERVER.SCHEME === 'http') {
|
if (isTestInstance() === false && CONFIG.WEBSERVER.SCHEME === 'http') {
|
||||||
return res.status(400)
|
return res.status(500)
|
||||||
.json({
|
.json({
|
||||||
error: 'Cannot follow on a non HTTPS web server.'
|
error: 'Cannot follow on a non HTTPS web server.'
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue