Skip to content
Snippets Groups Projects
Commit e384e94b authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

(test server) fix content-length: the number of bytes, not the number of chars...

(test server) fix content-length: the number of bytes, not the number of chars (fun with node.js buffers!).
parent 5c241dce
No related branches found
No related tags found
No related merge requests found
......@@ -101,9 +101,10 @@ function substitutionMiddleware(req, resp, next) {
contentType.substr(0,4) === 'text'))
{
if (buf) {
var l = buf.length;
if (Buffer.isBuffer(buf)) buf = buf.toString('utf8');
var l = Buffer.byteLength(buf);
buf = subHostNames(buf);
if (l != buf.length) resp.setHeader('Content-Length', buf.length);
if (l != Buffer.byteLength(buf)) resp.setHeader('Content-Length', Buffer.byteLength(buf));
}
}
if (buf && buf.length) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment