mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update ApiController, fix hashtag endpoint
This commit is contained in:
parent
076ec333a9
commit
9ac8bbde91
1 changed files with 5 additions and 1 deletions
|
@ -2028,11 +2028,15 @@ class ApiV1Controller extends Controller
|
|||
->latest()
|
||||
->limit($limit)
|
||||
->pluck('status_id')
|
||||
->filter(function($i) {
|
||||
return StatusService::get($i);
|
||||
})
|
||||
->map(function ($i) {
|
||||
return StatusService::get($i);
|
||||
})
|
||||
->filter()
|
||||
->all();
|
||||
->values()
|
||||
->toArray();
|
||||
|
||||
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue