Skip to content

Commit 03db1d6

Browse files
committed
MC-37321: Quote customer_is_guest = false
1 parent 5ab1f14 commit 03db1d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Checkout/Model/Session.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,8 @@ public function loadCustomerQuote()
383383

384384
if ($customerQuote->getId() && $this->getQuoteId() != $customerQuote->getId()) {
385385
if ($this->getQuoteId()) {
386-
$quote = $this->getQuote()->setCustomerIsGuest(false);
386+
$quote = $this->getQuote();
387+
$quote->setCustomerIsGuest(false);
387388
$this->quoteRepository->save(
388389
$customerQuote->merge($quote)->collectTotals()
389390
);

0 commit comments

Comments
 (0)