diff options
author | Eugen <eugen@zeonfederated.com> | 2017-04-05 03:27:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-05 03:27:38 +0200 |
commit | 4c92f156645f62bd6170df1ce966374574e44ef1 (patch) | |
tree | 8ba55a55df75046b4f0a06151418453d06672f13 /app/lib/feed_manager.rb | |
parent | 5af0ecbcd9cfd757c4d5bd541d83ca11e44d14ef (diff) | |
parent | 94d00f278819d34ef97d59d17eb289e9be217dfe (diff) |
Merge branch 'master' into add_more_tests_to_models
Diffstat (limited to 'app/lib/feed_manager.rb')
-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 28e712704..2cca1cefe 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -118,7 +118,7 @@ class FeedManager def filter_from_mentions?(status, receiver_id) check_for_blocks = [status.account_id] - check_for_blocks.concat(status.mentions.select('account_id').map(&:account_id)) + check_for_blocks.concat(status.mentions.pluck(:account_id)) check_for_blocks.concat([status.in_reply_to_account]) if status.reply? && !status.in_reply_to_account_id.nil? should_filter = receiver_id == status.account_id # Filter if I'm mentioning myself |