Skip to content

Commit f2db185

Browse files
committed
#37864 Fix Functional test
1 parent d94cd6f commit f2db185

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Catalog/Model/ProductRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ private function joinPositionField(
932932
foreach ($filterGroup->getFilters() as $filter) {
933933
if ($filter->getField() === 'category_id') {
934934
$filterValue = $filter->getValue();
935-
$categoryIds[] = is_array($filterValue) ? $filterValue : explode(',', $filterValue ?? '');
935+
$categoryIds[] = is_array($filterValue) ? $filterValue : explode(',', $filterValue);
936936
}
937937
}
938938
}

0 commit comments

Comments
 (0)