mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update ApiV1Controller, fix link header pagination
This commit is contained in:
parent
ebbdb4ab96
commit
737f3da5a4
1 changed files with 1 additions and 1 deletions
|
@ -1254,7 +1254,7 @@ class ApiV1Controller extends Controller
|
|||
|
||||
$baseUrl = config('app.url') . '/api/v1/notifications?';
|
||||
|
||||
$link = "{$baseUrl}max_id={$maxId}; rel='next',{$baseUrl}min_id={$minId};";
|
||||
$link = "<{$baseUrl}max_id={$maxId}>; rel='next',<{$baseUrl}min_id={$minId}>; rel='prev'";
|
||||
|
||||
return response()->json($res)->withHeaders([
|
||||
'Link' => $link,
|
||||
|
|
Loading…
Reference in a new issue