소스 검색

fix content-length for index

jomo 11 년 전
부모
커밋
f031616984
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      routes/index.js

+ 1 - 1
routes/index.js

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