Fix type error in OnDemand API endpoint (#4423)

This commit is contained in:
Vaalyn 2021-07-21 23:44:52 +02:00 committed by GitHub
parent 3eabf80288
commit e509cde831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class ListAction
$params = $request->getQueryParams();
$searchPhrase = trim($params['searchPhrase']);
$searchPhrase = trim($params['searchPhrase'] ?? '');
if (!empty($searchPhrase)) {
$searchFields = [
'media_title',