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
+1 -9
View File
@@ -59,15 +59,7 @@ export class MapController extends BaseController{
this.addCorsHeaders(res);
res.end(JSON.stringify(mapDetails));
} catch (e) {
if (e.response) {
res.writeStatus(e.response.status+" "+e.response.statusText);
this.addCorsHeaders(res);
res.end("An error occurred: "+e.response.status+" "+e.response.statusText);
} else {
res.writeStatus("500 Internal Server Error")
this.addCorsHeaders(res);
res.end("An error occurred");
}
this.errorToResponse(e, res);
}
})();