diff options
author | Jeong Arm <kjwonmail@gmail.com> | 2022-12-15 23:52:06 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 15:52:06 +0100 |
commit | e8cc63105fe9e5166182ccea28008d880ca43fd9 (patch) | |
tree | eeb2f4569ffab43176dd4cb5eb61abe031189129 /app | |
parent | e5d15a5b563863a07e7f91fc6f3bc0475bd6200a (diff) |
Don't delivery a reply to domains which are blocked by author (#22117)
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/lib/status_reach_finder.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/status_reach_finder.rb b/app/lib/status_reach_finder.rb index ccf1e9e3a..36fb0e80f 100644 --- a/app/lib/status_reach_finder.rb +++ b/app/lib/status_reach_finder.rb @@ -70,7 +70,7 @@ class StatusReachFinder def followers_inboxes if @status.in_reply_to_local_account? && distributable? - @status.account.followers.or(@status.thread.account.followers).inboxes + @status.account.followers.or(@status.thread.account.followers.not_domain_blocked_by_account(@status.account)).inboxes elsif @status.direct_visibility? || @status.limited_visibility? [] else |