From: Takuya Yoshida Date: Fri, 23 Jun 2017 17:22:02 +0000 (+0900) Subject: Fix errorMiddleware to prevent "TypeError: res.writeHead is not a function" (#3913) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=0c44316b22c3711ad5369dae2f66f0fd5c79799e;p=mastodon.git Fix errorMiddleware to prevent "TypeError: res.writeHead is not a function" (#3913) * Fix errorMiddleware * Add "eslint-disable-line no-unused-vars" --- diff --git a/streaming/index.js b/streaming/index.js index fb23be34d..156e1d4bc 100644 --- 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' }));