Check reblogged status for blocked/muted mentions (#7957)

lolsob-rspec
Eugen Rochko 2018-07-05 18:43:37 +02:00 committed by GitHub
parent 34fdf77f48
commit 9f0a91e142
1 changed files with 5 additions and 1 deletions

View File

@ -157,7 +157,11 @@ class FeedManager
check_for_blocks = status.mentions.pluck(:account_id)
check_for_blocks.concat([status.account_id])
check_for_blocks.concat([status.reblog.account_id]) if status.reblog?
if status.reblog?
check_for_blocks.concat([status.reblog.account_id])
check_for_blocks.concat(status.reblog.mentions.pluck(:account_id))
end
return true if blocks_or_mutes?(receiver_id, check_for_blocks, :home)