diff options
author | aschmitz <aschmitz@lardbucket.org> | 2017-11-11 22:10:49 -0600 |
---|---|---|
committer | aschmitz <aschmitz@lardbucket.org> | 2017-11-11 22:10:49 -0600 |
commit | 9a42f7cbed28ca010eca6cef89298ab806ce298f (patch) | |
tree | 49c0ce1ec20b1ce7c16339047cb62b3e5bdf8105 /app | |
parent | 48c705bbadd8dfba83030f304154c822d98a7da7 (diff) |
Actually filter blocked reblogs from feed
And even a relevant test. Whoops.
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/feed_manager.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/feed_manager.rb b/app/lib/feed_manager.rb index 2ddfac336..3b16b5d52 100644 --- a/app/lib/feed_manager.rb +++ b/app/lib/feed_manager.rb @@ -160,7 +160,9 @@ class FeedManager should_filter &&= status.account_id != status.in_reply_to_account_id # and it's not a self-reply return should_filter elsif status.reblog? # Filter out a reblog - should_filter = Block.where(account_id: status.reblog.account_id, target_account_id: receiver_id).exists? # or if the author of the reblogged status is blocking me + src_id = status.account_id + should_filter = Follow.where(account_id: receiver_id, target_account_id: src_id, show_reblogs: false).exists? # if the reblogger's reblogs are suppressed + should_filter ||= Block.where(account_id: status.reblog.account_id, target_account_id: receiver_id).exists? # or if the author of the reblogged status is blocking me should_filter ||= AccountDomainBlock.where(account_id: receiver_id, domain: status.reblog.account.domain).exists? # or the author's domain is blocked return should_filter end |