1
0
Fork 0

Update ProfileController

This commit is contained in:
Daniel Supernault 2018-07-23 11:31:06 -06:00
parent fec7ee8505
commit 61fb01aaed
1 changed files with 1 additions and 2 deletions

View File

@ -21,7 +21,6 @@ class ProfileController extends Controller
$mimes = [
'application/activity+json',
'application/ld+json',
'application/ld+json; profile="https://www.w3.org/ns/activitystreams"'
];
@ -36,7 +35,7 @@ class ProfileController extends Controller
$timeline = $user->statuses()
->whereHas('media')
->whereNull('in_reply_to_id')
->orderBy('id','desc')
->orderBy('created_at','desc')
->withCount(['comments', 'likes'])
->simplePaginate(21);