some minor cleanup in the async tree...

This commit is contained in:
Julian Lam
2015-05-18 16:01:40 -04:00
parent 9daa2701cd
commit 8bc5330e89

View File

@@ -306,20 +306,22 @@ var async = require('async'),
function(count, next) {
results.postData.reputation = count;
posts.setPostField(pid, 'reputation', count, next);
},
function(next) {
plugins.fireHook('action:post.' + type, {
pid: pid,
uid: uid,
}, next);
},
function(next) {
next(null, {
post: results.postData,
isFavourited: isFavouriting
});
}
], callback);
], function(err) {
if (err) {
return callback(err);
}
plugins.fireHook('action:post.' + type, {
pid: pid,
uid: uid,
});
callback(null, {
post: results.postData,
isFavourited: isFavouriting
});
});
});
}