mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-14 10:34:31 +00:00
Update TimelineController
This commit is contained in:
parent
614b951c5e
commit
679a566466
1 changed files with 1 additions and 0 deletions
|
@ -29,6 +29,7 @@ class TimelineController extends Controller
|
||||||
->pluck('filterable_id');
|
->pluck('filterable_id');
|
||||||
$timeline = Status::whereIn('profile_id', $following)
|
$timeline = Status::whereIn('profile_id', $following)
|
||||||
->whereNotIn('profile_id', $filtered)
|
->whereNotIn('profile_id', $filtered)
|
||||||
|
->whereVisibility('public')
|
||||||
->orderBy('created_at', 'desc')
|
->orderBy('created_at', 'desc')
|
||||||
->withCount(['comments', 'likes'])
|
->withCount(['comments', 'likes'])
|
||||||
->simplePaginate(20);
|
->simplePaginate(20);
|
||||||
|
|
Loading…
Reference in a new issue