Skip to content

Commit

Permalink
Add charset
Browse files Browse the repository at this point in the history
  • Loading branch information
meaku committed Feb 17, 2015
1 parent 29d21c7 commit 0e1a621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var http = require("http"),
slogan = require("../index");

http.createServer(function (req, res) {
res.writeHead(200, {"Content-Type": "text/plain"});
res.writeHead(200, {"Content-Type": "text/plain; charset=utf8"});
res.end(slogan("peerigon") + "\n");
}).listen(7177, "127.0.0.1");

Expand Down

0 comments on commit 0e1a621

Please sign in to comment.