forked from mirror/pixelfed
Update ApiV1Controller, fix support for notification filter types[]
This commit is contained in:
parent
2b9586fce1
commit
f61bbecaa9
|
@ -2335,7 +2335,12 @@ class ApiV1Controller extends Controller
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$baseUrl = config('app.url').'/api/v1/notifications?limit='.$ogLimit.'&';
|
if ($request->has('types')) {
|
||||||
|
$typesParams = collect($types)->implode('&types[]=');
|
||||||
|
$baseUrl = config('app.url').'/api/v1/notifications?types[]='.$typesParams.'&limit='.$ogLimit.'&';
|
||||||
|
} else {
|
||||||
|
$baseUrl = config('app.url').'/api/v1/notifications?limit='.$ogLimit.'&';
|
||||||
|
}
|
||||||
|
|
||||||
if ($minId == $maxId) {
|
if ($minId == $maxId) {
|
||||||
$minId = null;
|
$minId = null;
|
||||||
|
|
Loading…
Reference in New Issue