Fixed bug in parsing jellyfin ignored list.

This commit is contained in:
Abdulmhsen B. A. A
2022-07-10 19:57:58 +03:00
parent 05161ffe32
commit fe186ef6cd

View File

@@ -101,7 +101,7 @@ class GetLibrariesList
}
if (null !== ($ignoreIds = ag($context->options, 'ignore', null))) {
$ignoreIds = array_map(fn($v) => (int)trim($v), explode(',', (string)$ignoreIds));
$ignoreIds = array_map(fn($v) => trim($v), explode(',', (string)$ignoreIds));
}
$list = [];