extract err

This commit is contained in:
reality 2015-03-15 18:51:54 +00:00
parent b41d01b4ad
commit 323be545ab

View File

@ -51,8 +51,7 @@ var api = function(dbot) {
if(callbackIndex != -1) {
args[callbackIndex] = function() {
body.data = Array.prototype.slice.call(arguments, 0);
console.log(body);
if(_.isObject(body.data) && _.has(body.data, 'err')) {
if(_.isObject(body.data[0]) && _.has(body.data[0], 'err')) {
body.err = body.data.err;
}
res.json(body);