about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFire Demon <firedemon@creature.cafe>2020-10-22 20:05:36 -0500
committerFire Demon <firedemon@creature.cafe>2020-10-22 20:05:36 -0500
commita9989bd53cd7512285b74a966568ef3333657ebf (patch)
tree50ae87b6edabe1e3c1b52ef849cdbcbd08fcb974
parentf2bd0750a9a7781ffb4e979e440d59fec51c913e (diff)
Fix spelling
-rw-r--r--app/lib/feed_manager.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb
index 386a5648a..665869b26 100644
--- a/app/lib/feed_manager.rb
+++ b/app/lib/feed_manager.rb
@@ -443,7 +443,7 @@ class FeedManager
       # ...or it's a reply...
       if !(should_filter || status.reblog.in_reply_to_account_id.nil?) && status.reblog.reply?
         # ...and you don't follow the participants...
-        should_filter ||= (status.reblog.mentions.pluck(:account_ids) - crutches[:following].keys).present?
+        should_filter ||= (status.reblog.mentions.pluck(:account_id) - crutches[:following].keys).present?
         # ...and the author isn't replying to you...
         should_filter &&= receiver_id != status.in_reply_to_account_id
       end