diff --git a/app/lib/status_reach_finder.rb b/app/lib/status_reach_finder.rb index 36fb0e80fb..5554dab67e 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