Merge branch 'master' of github.com:koajs/koa
This commit is contained in:
commit
f6161918ee
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ function respond(next){
|
|||
|
||||
// body: json
|
||||
body = JSON.stringify(body, null, this.app.jsonSpaces);
|
||||
this.set('Content-Length', body.length);
|
||||
this.set('Content-Length', Buffer.byteLength(body));
|
||||
this.set('Content-Type', 'application/json');
|
||||
if (head) return res.end();
|
||||
res.end(body);
|
||||
|
|
Loading…
Reference in a new issue