Correctly forwarding HTTP error status code from admin to front

This commit is contained in:
David Négrier
2021-01-17 20:42:33 +01:00
parent a5aa9b6cf9
commit 48c3f951bf
3 changed files with 18 additions and 13 deletions
@@ -60,10 +60,7 @@ export class AuthenticateController extends BaseController {
}));
} catch (e) {
console.error("An error happened", e)
res.writeStatus(e.status || "500 Internal Server Error");
this.addCorsHeaders(res);
res.end('An error happened');
this.errorToResponse(e, res);
}