Show replies in the main feed if they have 2 or more upvotes (#269)

This commit is contained in:
Paul Frazee
2023-03-06 14:49:42 -06:00
committed by GitHub
parent 9f29bd78c9
commit be4bb79502
+2 -1
View File
@@ -263,7 +263,8 @@ export class FeedModel {
!item.reply || // not a reply
isRepost || // but allow if it's a repost or thread
item._isThreadParent ||
item._isThreadChild
item._isThreadChild ||
item.post.upvoteCount >= 2
)
})
}