Skip to content

Commit 6b50d02

Browse files
MC-41464: Subtotal not being updated if you are back from multishipping to cart
1 parent 7c6b636 commit 6b50d02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Multishipping/Model/Cart/Controller/CartPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function beforeDispatch(Cart $subject, RequestInterface $request)
7373
{
7474
/** @var Quote $quote */
7575
$quote = $this->checkoutSession->getQuote();
76-
if ($quote->isMultipleShippingAddresses()) {
76+
if ($quote->isMultipleShippingAddresses() || $quote->getIsMultiShipping()) {
7777
$this->disableMultishipping->execute($quote);
7878
foreach ($quote->getAllShippingAddresses() as $address) {
7979
$quote->removeAddress($address->getId());

0 commit comments

Comments
 (0)