Browse Source

Update ApiV1Controller, fix trending accounts format. Closes #4356

Daniel Supernault 2 years ago
parent
commit
37bd2ee51b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/Http/Controllers/Api/ApiV1Controller.php

+ 2 - 1
app/Http/Controllers/Api/ApiV1Controller.php

@@ -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;
         })