diff --git a/node_modules/harbors/server/request.js b/node_modules/harbors/server/request.js index 8d1f88e..7afa4cf 100644 --- a/node_modules/harbors/server/request.js +++ b/node_modules/harbors/server/request.js @@ -57,8 +57,8 @@ request.prototype.send = function(string){ this.response.end(); return undefined; } - var result = new Buffer(string); - this._headers = {"Content-Length":result.length}; +// var result = new Buffer(string); +// this._headers = {"Content-Length":result.length}; this.response.writeHeader(this._statusCode_,this._headers_); this.response.end(string); };