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 ea71192 commit 2826f74Copy full SHA for 2826f74
app/code/Magento/Checkout/Model/DefaultConfigProvider.php
@@ -397,6 +397,9 @@ private function getQuoteData()
397
if ($this->checkoutSession->getQuote()->getId()) {
398
$quote = $this->quoteRepository->get($this->checkoutSession->getQuote()->getId());
399
$quoteData = $quote->toArray();
400
+ if (is_object($quote->getExtensionAttributes())) {
401
+ $quoteData['extension_attributes'] = $quote->getExtensionAttributes()->__toArray();
402
+ }
403
$quoteData['is_virtual'] = $quote->getIsVirtual();
404
405
if (!$quote->getCustomer()->getId()) {
0 commit comments