mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update timeline logic to sort by date instead of id
This commit is contained in:
parent
7f73b1ae6b
commit
197829224e
2 changed files with 3 additions and 3 deletions
|
@ -43,7 +43,7 @@ class SiteController extends Controller
|
|||
->whereNotIn('profile_id', $filtered)
|
||||
->whereHas('media')
|
||||
->whereVisibility('public')
|
||||
->orderBy('id', 'desc')
|
||||
->orderBy('created_at', 'desc')
|
||||
->withCount(['comments', 'likes', 'shares'])
|
||||
->simplePaginate(20);
|
||||
$type = 'personal';
|
||||
|
|
|
@ -28,7 +28,7 @@ class TimelineController extends Controller
|
|||
->pluck('filterable_id');
|
||||
$timeline = Status::whereIn('profile_id', $following)
|
||||
->whereNotIn('profile_id', $filtered)
|
||||
->orderBy('id', 'desc')
|
||||
->orderBy('created_at', 'desc')
|
||||
->withCount(['comments', 'likes'])
|
||||
->simplePaginate(20);
|
||||
$type = 'personal';
|
||||
|
@ -54,7 +54,7 @@ class TimelineController extends Controller
|
|||
->whereNull('reblog_of_id')
|
||||
->whereVisibility('public')
|
||||
->withCount(['comments', 'likes'])
|
||||
->orderBy('id', 'desc')
|
||||
->orderBy('created_at', 'desc')
|
||||
->simplePaginate(20);
|
||||
$type = 'local';
|
||||
|
||||
|
|
Loading…
Reference in a new issue