Commit 2923211e authored by 陈家荣's avatar 陈家荣

aa

parent 2d647f6d
......@@ -134,12 +134,13 @@ router.get('/thread/:tid/get', function(req, res, next) {
}
},
function(thread,callback) {
function(datas,callback) {
forumUserService.getUserByUid(uid,function(err, results) {
if (err) {
callback(err, null);
} else {
callback(null, results);
datas.push(results)
callback(null, datas);
}
});
}
......
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