ソースを参照

semi-correction #470

Hakim El Hattab 11 年 前
コミット
5655b5f467
2 ファイル変更2 行追加2 行削除
  1. 1 1
      plugin/multiplex/index.js
  2. 1 1
      plugin/notes-server/index.js

+ 1 - 1
plugin/multiplex/index.js

@@ -30,7 +30,7 @@ app.configure(function() {
 });
 });
 
 
 app.get("/", function(req, res) {
 app.get("/", function(req, res) {
-	res.writeHead(200, {'Content-Type': 'text/html'})
+	res.writeHead(200, {'Content-Type': 'text/html'});
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });
 });
 
 

+ 1 - 1
plugin/notes-server/index.js

@@ -30,7 +30,7 @@ app.configure(function() {
 });
 });
 
 
 app.get("/", function(req, res) {
 app.get("/", function(req, res) {
-	res.writeHead(200, {'Content-Type': 'text/html'})
+	res.writeHead(200, {'Content-Type': 'text/html'});
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 	fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
 });
 });