about summary refs log tree commit diff
path: root/app/lib/feed_manager.rb
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-07-21 14:47:21 -0500
committerFire Demon <firedemon@creature.cafe>2020-08-30 05:44:01 -0500
commitf2c3d69c1a35cd5bd9a9e8b7a7245a81dafdd319 (patch)
treeaa970335d90cf9b0d75cd5ec76f7bde710ee7eea /app/lib/feed_manager.rb
parent66cce37e1f0232a57335923ffced8ef2e4952603 (diff)
[Filtering] Do not include boosts in lists
Diffstat (limited to 'app/lib/feed_manager.rb')
-rw-r--r--app/lib/feed_manager.rb2
1 files changed, 2 insertions, 0 deletions
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