From 684175f7d723a2d980bc18131194018d08b0c0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Thu, 28 Feb 2019 12:17:17 -0500 Subject: [PATCH] fix: #7413 --- src/posts/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts/index.js b/src/posts/index.js index 2c514ed108..5d40d0aecb 100644 --- a/src/posts/index.js +++ b/src/posts/index.js @@ -74,7 +74,7 @@ Posts.getPostSummariesFromSet = function (set, uid, start, stop, callback) { db.getSortedSetRevRange(set, start, stop, next); }, function (pids, next) { - privileges.posts.filter('read', pids, uid, next); + privileges.posts.filter('topics:read', pids, uid, next); }, function (pids, next) { Posts.getPostSummaryByPids(pids, uid, { stripTags: false }, next);