mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-25 15:55:22 +00:00
Update ApiV1Controller, fix illegal operator bug by setting default min_id
This commit is contained in:
parent
35e2cf1f6b
commit
415826f253
1 changed files with 5 additions and 0 deletions
|
@ -514,6 +514,11 @@ class ApiV1Controller extends Controller
|
||||||
$limit = $request->limit ?? 20;
|
$limit = $request->limit ?? 20;
|
||||||
$max_id = $request->max_id;
|
$max_id = $request->max_id;
|
||||||
$min_id = $request->min_id;
|
$min_id = $request->min_id;
|
||||||
|
|
||||||
|
if(!$max_id && !$min_id) {
|
||||||
|
$min_id = 1;
|
||||||
|
}
|
||||||
|
|
||||||
$pid = $request->user()->profile_id;
|
$pid = $request->user()->profile_id;
|
||||||
$scope = $request->only_media == true ?
|
$scope = $request->only_media == true ?
|
||||||
['photo', 'photo:album', 'video', 'video:album'] :
|
['photo', 'photo:album', 'video', 'video:album'] :
|
||||||
|
|
Loading…
Reference in a new issue