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 cd826aa commit 06195b8Copy full SHA for 06195b8
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -2944,7 +2944,7 @@ protected function checkUrlKeyDuplicates()
2944
)->joinLeft(
2945
['cpe' => $resource->getTable('catalog_product_entity')],
2946
"cpe.entity_id = url_rewrite.entity_id"
2947
- )->where('request_path IN (?)', array_keys($urlKeys))
+ )->where('request_path IN (?)', array_map('strval', array_keys($urlKeys)))
2948
->where('store_id IN (?)', $storeId)
2949
->where('cpe.sku not in (?)', array_values($urlKeys))
2950
);
0 commit comments