mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +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;
|
||||
$max_id = $request->max_id;
|
||||
$min_id = $request->min_id;
|
||||
|
||||
if(!$max_id && !$min_id) {
|
||||
$min_id = 1;
|
||||
}
|
||||
|
||||
$pid = $request->user()->profile_id;
|
||||
$scope = $request->only_media == true ?
|
||||
['photo', 'photo:album', 'video', 'video:album'] :
|
||||
|
|
Loading…
Reference in a new issue