1
0
Fork 0

added missing charset

This commit is contained in:
Frank Celler 2012-09-20 09:32:53 +02:00
parent 273bd77492
commit d1184d89e4
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ actions.defineHttp({
prefix : true,
callback : function (req, res) {
res.responseCode = actions.HTTP_OK;
res.contentType = "application/json";
res.contentType = "application/json; charset=utf-8";
res.body = JSON.stringify(req);
}
});