diff options
Diffstat (limited to 'plugin/notes-server')
-rw-r--r-- | plugin/notes-server/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
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); }); |