From 180625ece34b05058c5b8662d6c80071446965e7 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Tue, 23 Sep 2014 14:00:28 -0400 Subject: [PATCH] forgot to return just posts array --- src/posts.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/posts.js b/src/posts.js index 745e7f0d2f..dcedf4383d 100644 --- a/src/posts.js +++ b/src/posts.js @@ -344,7 +344,9 @@ var async = require('async'), next(null, post); }); }, function(err, posts) { - plugins.fireHook('filter:post.getPostSummaryByPids', {posts: posts, uid: uid}, callback); + plugins.fireHook('filter:post.getPostSummaryByPids', {posts: posts, uid: uid}, function(err, postData) { + callback(err, postData.posts); + }); }); }); });