We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 798b6c3 commit b291295Copy full SHA for b291295
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -3090,7 +3090,7 @@ function ($linkName) use ($rowData) {
3090
foreach ($linkNameToId as $linkName => $linkId) {
3091
$linkSkus = explode($this->getMultipleValueSeparator(), $rowData[$linkName . 'sku']);
3092
//process empty value
3093
- if (!empty($linkSkus[0]) && $linkSkus[0] === Import::DEFAULT_EMPTY_ATTRIBUTE_VALUE_CONSTANT) {
+ if (!empty($linkSkus[0]) && $linkSkus[0] === $this->getEmptyAttributeValueConstant()) {
3094
$linksToDelete[$linkId][] = $productId;
3095
continue;
3096
}
0 commit comments