From 74c30c60b8b5e68176b1447524db7e725f75a372 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 6 Mar 2023 14:49:42 -0600 Subject: Show replies in the main feed if they have 2 or more upvotes (#269) --- src/state/models/feed-view.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/state/models/feed-view.ts b/src/state/models/feed-view.ts index fe0943018..535221e63 100644 --- a/src/state/models/feed-view.ts +++ b/src/state/models/feed-view.ts @@ -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 ) }) } -- cgit 1.4.1