diff --git a/app/Http/Controllers/TimelineController.php b/app/Http/Controllers/TimelineController.php index 58665fb0a..39094c033 100644 --- a/app/Http/Controllers/TimelineController.php +++ b/app/Http/Controllers/TimelineController.php @@ -29,6 +29,7 @@ class TimelineController extends Controller ->pluck('filterable_id'); $timeline = Status::whereIn('profile_id', $following) ->whereNotIn('profile_id', $filtered) + ->whereVisibility('public') ->orderBy('created_at', 'desc') ->withCount(['comments', 'likes']) ->simplePaginate(20);