diff --git a/app/Http/Controllers/InternalApiController.php b/app/Http/Controllers/InternalApiController.php index 9b1b3af4e..d724be0c1 100644 --- a/app/Http/Controllers/InternalApiController.php +++ b/app/Http/Controllers/InternalApiController.php @@ -146,9 +146,6 @@ class InternalApiController extends Controller $posts = Status::select('id', 'caption', 'profile_id') ->whereHas('media') - ->whereHas('profile', function($q) { - $q->where('is_private', false); - }) ->whereIsNsfw(false) ->whereVisibility('public') ->whereNotIn('profile_id', $following)