Merge pull request #4855 from pixelfed/staging

Update ApiV1Controller, update favourites max limit. Fixes #4854
This commit is contained in:
daniel 2024-01-06 11:45:12 -07:00 committed by GitHub
commit 0a556d1ac1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ class ApiV1Controller extends Controller
{
abort_if(!$request->user(), 403);
$this->validate($request, [
'limit' => 'sometimes|integer|min:1|max:20'
'limit' => 'sometimes|integer|min:1|max:40'
]);
$user = $request->user();