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.
2 parents 72079a9 + f97f868 commit 16d16abCopy full SHA for 16d16ab
app/code/Magento/Checkout/Model/Type/Onepage.php
@@ -445,7 +445,9 @@ public function saveShipping($data, $customerAddressId)
445
if (!isset($data[$attributeCode])) {
446
$address->setData($attributeCode, null);
447
} else {
448
- $address->setDataUsingMethod($attributeCode, $compactedData[$attributeCode]);
+ if(isset($compactedData[$attributeCode])){
449
+ $address->setDataUsingMethod($attributeCode, $compactedData[$attributeCode]);
450
+ }
451
}
452
453
0 commit comments