summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/lib/status_reach_finder.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/lib/status_reach_finder.rb b/app/lib/status_reach_finder.rb
index 36fb0e80fb8..5554dab67ea 100644
--- a/app/lib/status_reach_finder.rb
+++ b/app/lib/status_reach_finder.rb
@@ -22,7 +22,9 @@ class StatusReachFinder
if @status.reblog?
[]
else
- Account.where(id: reached_account_ids).inboxes
+ scope = Account.where(id: reached_account_ids).inboxes
+ scope.merge!(Account.without_suspended) unless unsafe?
+ scope
end
end