diff options
author | Fire Demon <firedemon@creature.cafe> | 2020-10-22 20:05:36 -0500 |
---|---|---|
committer | Fire Demon <firedemon@creature.cafe> | 2020-10-22 20:05:36 -0500 |
commit | a9989bd53cd7512285b74a966568ef3333657ebf (patch) | |
tree | 50ae87b6edabe1e3c1b52ef849cdbcbd08fcb974 /app | |
parent | f2bd0750a9a7781ffb4e979e440d59fec51c913e (diff) |
Fix spelling
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/feed_manager.rb | 2 |
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 |