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 bbb3219 + cbd2928 commit 610752dCopy full SHA for 610752d
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 (null !== $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