mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-10 09:29:18 +00:00
Check reblogged status for blocked/muted mentions (#7957)
This commit is contained in:
parent
1f6ed4f86a
commit
4b198b172d
|
@ -157,7 +157,11 @@ class FeedManager
|
||||||
|
|
||||||
check_for_blocks = status.mentions.pluck(:account_id)
|
check_for_blocks = status.mentions.pluck(:account_id)
|
||||||
check_for_blocks.concat([status.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)
|
return true if blocks_or_mutes?(receiver_id, check_for_blocks, :home)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue