From 16b49f06f8ae6ed520796c013287d7c2c6ec8365 Mon Sep 17 00:00:00 2001 From: Chris Thompson Date: Tue, 30 Nov 2021 17:36:01 -0500 Subject: [PATCH] Use the helper method --- src/Cart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cart.php b/src/Cart.php index b9c865d..fc33359 100644 --- a/src/Cart.php +++ b/src/Cart.php @@ -813,7 +813,7 @@ class Cart $cartItem->setQuantity($qty); } - $cartItem->setInstance($this->instance); + $cartItem->setInstance($this->currentInstance()); return $cartItem; }