diff --git a/src/module-vsbridge-indexer-catalog/Model/ResourceModel/AbstractEavAttributes.php b/src/module-vsbridge-indexer-catalog/Model/ResourceModel/AbstractEavAttributes.php index c361200e..5a891c3d 100644 --- a/src/module-vsbridge-indexer-catalog/Model/ResourceModel/AbstractEavAttributes.php +++ b/src/module-vsbridge-indexer-catalog/Model/ResourceModel/AbstractEavAttributes.php @@ -172,7 +172,7 @@ private function processValues(array $values) $attributeCode = $attribute->getAttributeCode(); if ($attribute->getFrontendInput() === 'multiselect') { - $options = explode(',', $value['value']); + $options = explode(',', $value['value'] ?? ''); if (!empty($options)) { $options = array_map([$this, 'parseValue'], $options);