mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-18 04:21:27 +00:00
commit
9479838042
2 changed files with 10 additions and 4 deletions
|
@ -5,6 +5,7 @@
|
||||||
### Updates
|
### Updates
|
||||||
- Update ApiV1Controller, add support for notification filter types ([f61159a1](https://github.com/pixelfed/pixelfed/commit/f61159a1))
|
- Update ApiV1Controller, add support for notification filter types ([f61159a1](https://github.com/pixelfed/pixelfed/commit/f61159a1))
|
||||||
- Update ApiV1Dot1Controller, fix mutual api ([a8bb97b2](https://github.com/pixelfed/pixelfed/commit/a8bb97b2))
|
- Update ApiV1Dot1Controller, fix mutual api ([a8bb97b2](https://github.com/pixelfed/pixelfed/commit/a8bb97b2))
|
||||||
|
- Update ApiV1Controller, fix /api/v1/favourits pagination ([72f68160](https://github.com/pixelfed/pixelfed/commit/72f68160))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.12.3 (2024-07-01)](https://github.com/pixelfed/pixelfed/compare/v0.12.2...v0.12.3)
|
## [v0.12.3 (2024-07-01)](https://github.com/pixelfed/pixelfed/compare/v0.12.2...v0.12.3)
|
||||||
|
|
|
@ -1334,12 +1334,17 @@ class ApiV1Controller extends Controller
|
||||||
if ($res->count()) {
|
if ($res->count()) {
|
||||||
$ids = $res->map(function ($status) {
|
$ids = $res->map(function ($status) {
|
||||||
return $status['like_id'];
|
return $status['like_id'];
|
||||||
});
|
})->filter();
|
||||||
$max = $ids->max();
|
|
||||||
$min = $ids->min();
|
$max = $ids->min() - 1;
|
||||||
|
$min = $ids->max();
|
||||||
|
|
||||||
$baseUrl = config('app.url').'/api/v1/favourites?limit='.$limit.'&';
|
$baseUrl = config('app.url').'/api/v1/favourites?limit='.$limit.'&';
|
||||||
$link = '<'.$baseUrl.'max_id='.$max.'>; rel="next",<'.$baseUrl.'min_id='.$min.'>; rel="prev"';
|
if ($maxId) {
|
||||||
|
$link = '<'.$baseUrl.'max_id='.$max.'>; rel="next",<'.$baseUrl.'min_id='.$min.'>; rel="prev"';
|
||||||
|
} else {
|
||||||
|
$link = '<'.$baseUrl.'max_id='.$max.'>; rel="next"';
|
||||||
|
}
|
||||||
|
|
||||||
return $this->json($res, 200, ['Link' => $link]);
|
return $this->json($res, 200, ['Link' => $link]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue