mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-02-21 13:46:55 +00:00
Update PublicApiController, increase home timeline limit to 40
This commit is contained in:
parent
83c545aa57
commit
5c327a0ae2
1 changed files with 1 additions and 1 deletions
|
@ -332,7 +332,7 @@ class PublicApiController extends Controller
|
||||||
'page' => 'nullable|integer|max:40',
|
'page' => 'nullable|integer|max:40',
|
||||||
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
'min_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
||||||
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
'max_id' => 'nullable|integer|min:0|max:' . PHP_INT_MAX,
|
||||||
'limit' => 'nullable|integer|max:20'
|
'limit' => 'nullable|integer|max:40'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$page = $request->input('page');
|
$page = $request->input('page');
|
||||||
|
|
Loading…
Reference in a new issue