Bugfix for PostFrame reporting wrong ContentLength
This commit is contained in:
parent
4987009649
commit
06c8b74221
@ -75,10 +75,9 @@ class PostFrame extends EventEmitter
|
|||||||
{
|
{
|
||||||
if( !( this.result instanceof Buffer ) )
|
if( !( this.result instanceof Buffer ) )
|
||||||
{
|
{
|
||||||
this.result = String( this.result );
|
this.result = new Buffer( this.result + "" );
|
||||||
}
|
}
|
||||||
|
|
||||||
this.HTTP.response.headers["Content-Type"] = "text/plain";
|
|
||||||
this.HTTP.response.headers["Content-Length"] = this.result.length;
|
this.HTTP.response.headers["Content-Length"] = this.result.length;
|
||||||
this.HTTP.response.write( this.result );
|
this.HTTP.response.write( this.result );
|
||||||
this.HTTP.response.end();
|
this.HTTP.response.end();
|
||||||
|
Loading…
Reference in New Issue
Block a user