moved filter:post.getPostSummaryByPids to before parsePosts call

/@pitaj
This commit is contained in:
Julian Lam
2018-08-24 14:54:08 -04:00
parent 33020b1ee0
commit cf82407a8f

View File

@@ -78,13 +78,16 @@ module.exports = function (Posts) {
return results.topics[post.tid];
});
parsePosts(posts, options, next);
next(null, posts);
},
function (posts, next) {
plugins.fireHook('filter:post.getPostSummaryByPids', { posts: posts, uid: uid }, next);
},
function (data, next) {
next(null, data.posts);
parsePosts(data.posts, options, next);
},
function (posts, next) {
next(null, posts);
},
], callback);
};