Update ApiV1Controller, fix illegal operator bug by setting default min_id

This commit is contained in:
Daniel Supernault 2021-12-30 23:19:38 -07:00
parent 35e2cf1f6b
commit 415826f253
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 5 additions and 0 deletions

View File

@ -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'] :