Browse Source

fix content-length for index

jomo 10 years ago
parent
commit
f031616984
1 changed files with 1 additions and 1 deletions
  1. 1 1
      routes/index.js

+ 1 - 1
routes/index.js

@@ -11,7 +11,7 @@ module.exports = function(req, res) {
     config: config
     config: config
   });
   });
   res.writeHead(200, {
   res.writeHead(200, {
-    "Content-Length": html.length,
+    "Content-Length": Buffer.byteLength(html, "UTF-8"),
     "Content-Type": "text/html; charset=utf-8"
     "Content-Type": "text/html; charset=utf-8"
   });
   });
   res.end(html);
   res.end(html);