logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 0c44316b22c3711ad5369dae2f66f0fd5c79799e
parent: 2211e8d1cd6eb97a8a04e24c1fea7031a201edb5
Author: Takuya Yoshida <hawaiianphoto@geekhost.net>
Date:   Sat, 24 Jun 2017 02:22:02 +0900

Fix errorMiddleware to prevent "TypeError: res.writeHead is not a function" (#3913)

* Fix errorMiddleware

* Add "eslint-disable-line no-unused-vars"

Diffstat:

Mstreaming/index.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/streaming/index.js b/streaming/index.js @@ -242,7 +242,7 @@ const startWorker = (workerId) => { accountFromRequest(req, next); }; - const errorMiddleware = (err, req, res) => { + const errorMiddleware = (err, req, res, next) => { // eslint-disable-line no-unused-vars log.error(req.requestId, err.toString()); res.writeHead(err.statusCode || 500, { 'Content-Type': 'application/json' }); res.end(JSON.stringify({ error: err.statusCode ? err.toString() : 'An unexpected error occurred' }));