Update PublicApiController, increase home timeline limit to 40

This commit is contained in:
Daniel Supernault 2019-09-20 22:12:23 -06:00
parent 83c545aa57
commit 5c327a0ae2
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -332,7 +332,7 @@ class PublicApiController extends Controller
'page' => 'nullable|integer|max:40',
'min_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');