Update ApiV1Controller, fix trending accounts format. Closes #4356

This commit is contained in:
Daniel Supernault 2023-05-06 18:49:21 -06:00
parent a96a3cfc31
commit 37bd2ee51b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 1 deletions

View File

@ -3675,7 +3675,8 @@ class ApiV1Controller extends Controller
->filter(function($post) {
return $post && isset($post['id']);
})
->take(3);
->take(3)
->values();
$profile['recent_posts'] = $ids;
return $profile;
})