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 f710f9b commit 8bea285Copy full SHA for 8bea285
app/code/Magento/CustomerImportExport/Model/Import/CustomerComposite.php
@@ -299,8 +299,8 @@ public function validateData()
299
$rows = [];
300
foreach ($source as $row) {
301
$rows[] = [
302
- Address::COLUMN_EMAIL => $row[Customer::COLUMN_EMAIL],
303
- Address::COLUMN_WEBSITE => $row[Customer::COLUMN_WEBSITE],
+ Address::COLUMN_EMAIL => $row[Customer::COLUMN_EMAIL] ?? null,
+ Address::COLUMN_WEBSITE => $row[Customer::COLUMN_WEBSITE] ?? null
304
];
305
}
306
$source->rewind();
0 commit comments