fix: dont show delete posts on profile

v1.18.x
Barış Soner Uşaklı 6 years ago
parent 6a7bc1c5fb
commit e48c7cd717

@ -122,6 +122,10 @@ function getPosts(callerUid, userData, setSuffix, callback) {
function (pids, next) {
posts.getPostSummaryByPids(pids, callerUid, { stripTags: false }, next);
},
function (posts, next) {
posts = posts.filter(p => p && !p.deleted);
next(null, posts);
},
], callback);
}

Loading…
Cancel
Save