fix .onerror bind for stream "error" handling
This commit is contained in:
parent
9d7720f2d8
commit
b4b0789d7a
1 changed files with 1 additions and 1 deletions
|
@ -192,7 +192,7 @@ function respond(next){
|
||||||
|
|
||||||
// Stream body
|
// Stream body
|
||||||
if (body instanceof Stream) {
|
if (body instanceof Stream) {
|
||||||
body.on('error', this.error.bind(this));
|
body.on('error', this.onerror.bind(this));
|
||||||
if (head) return res.end();
|
if (head) return res.end();
|
||||||
return body.pipe(res);
|
return body.pipe(res);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue