aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHakim El Hattab <hakim.elhattab@gmail.com>2013-06-09 19:17:31 +0200
committerHakim El Hattab <hakim.elhattab@gmail.com>2013-06-09 19:17:31 +0200
commit5655b5f4674f71ed23988c7e0fc04bfe4415206c (patch)
treedf59c9233797cbc38debc108f7f610dfe8501b69
parent1c16148c09e96742bd4cb728589654ed43103867 (diff)
downloadfreenode-live-2017-presentation-5655b5f4674f71ed23988c7e0fc04bfe4415206c.tar
freenode-live-2017-presentation-5655b5f4674f71ed23988c7e0fc04bfe4415206c.tar.gz
semi-correction #470
-rw-r--r--plugin/multiplex/index.js2
-rw-r--r--plugin/notes-server/index.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/multiplex/index.js b/plugin/multiplex/index.js
index a278026..6f5d8b1 100644
--- a/plugin/multiplex/index.js
+++ b/plugin/multiplex/index.js
@@ -30,7 +30,7 @@ app.configure(function() {
});
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);
});
diff --git a/plugin/notes-server/index.js b/plugin/notes-server/index.js
index 8acac52..5535c90 100644
--- a/plugin/notes-server/index.js
+++ b/plugin/notes-server/index.js
@@ -30,7 +30,7 @@ app.configure(function() {
});
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);
});