should_filter=receiver_id==status.account_id# Filter if I'm mentioning myself
should_filter||=Block.where(account_id:receiver_id,target_account_id:check_for_blocks).any?# or it's from someone I blocked, in reply to someone I blocked, or mentioning someone I blocked
should_filter=Block.where(account_id:receiver_id,target_account_id:check_for_blocks).any?# Filter if it's from someone I blocked, in reply to someone I blocked, or mentioning someone I blocked
should_filter||=(status.account.silenced?&&!Follow.where(account_id:receiver_id,target_account_id:status.account_id).exists?)# of if the account is silenced and I'm not following them