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 7c3357c commit 64e4d0aCopy full SHA for 64e4d0a
app/code/Magento/CatalogImportExport/Model/Import/Product.php
@@ -1233,6 +1233,9 @@ protected function _getAllBunchImages($bunch)
1233
foreach ($bunch as $rowData) {
1234
$rowData = $this->_customFieldsMapping($rowData);
1235
foreach ($this->_imagesArrayKeys as $image) {
1236
+ if (empty($rowData[$image])) {
1237
+ continue;
1238
+ }
1239
$dispersionPath =
1240
\Magento\Framework\File\Uploader::getDispretionPath($rowData[$image]);
1241
$importImages = explode($this->getMultipleValueSeparator(), $rowData[$image]);
0 commit comments