Removing redundant setting of content type

This commit is contained in:
Andrew Hayward 2013-05-09 14:24:51 +01:00
Родитель 607249807d
Коммит 8cac79ee5c
1 изменённых файлов: 1 добавлений и 3 удалений

4
api.js
Просмотреть файл

@ -37,10 +37,8 @@ function api (method, default_query) {
if (err)
data.error = err;
if (req.xhr) {
res.contentType('application/json');
if (req.xhr)
return res.json(data);
}
req.remote = {
err: err,