From f2c3d69c1a35cd5bd9a9e8b7a7245a81dafdd319 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Tue, 21 Jul 2020 14:47:21 -0500 Subject: [Filtering] Do not include boosts in lists --- app/lib/feed_manager.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app') diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index 2a835668b..6c15e2616 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -49,6 +49,8 @@ class FeedManager end def push_to_list(list, status) + return false if status.reblog? + if status.reply? && status.in_reply_to_account_id != status.account_id should_filter = status.in_reply_to_account_id != list.account_id should_filter &&= status.account_id == list.account_id -- cgit