filter posts that you cant read

v1.18.x
barisusakli 8 years ago
parent 43bcd453dd
commit c1d28af2a7

@ -127,9 +127,6 @@ SocketPosts.getReplies = function (socket, pid, callback) {
function (next) {
posts.getPidsFromSet('pid:' + pid + ':replies', 0, -1, false, next);
},
function (pids, next) {
privileges.posts.filter('read', pids, socket.uid, next);
},
function (pids, next) {
async.parallel({
posts: function (next) {
@ -142,6 +139,9 @@ SocketPosts.getReplies = function (socket, pid, callback) {
},
function (results, next) {
postPrivileges = results.privileges;
results.posts = results.posts.filter(function (postData, index) {
return postData && postPrivileges[index].read;
});
topics.addPostData(results.posts, socket.uid, next);
},
function (postData, next) {

Loading…
Cancel
Save