Commit 67d0efd8 authored by nanahira's avatar nanahira

Added utf8 encoding

parent 158f21af
......@@ -155,6 +155,7 @@ http.createServer(function (req, res) {
return return_error(res, "Webhook "+hook+" not found.");
}
var info = "";
req.setEncoding("utf8");
req.addListener('data', function(chunk) {
info += chunk;
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment