From a9989bd53cd7512285b74a966568ef3333657ebf Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Thu, 22 Oct 2020 20:05:36 -0500 Subject: Fix spelling --- app/lib/feed_manager.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') 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 -- cgit