diff --git a/packages/Webkul/Product/src/Type/Bundle.php b/packages/Webkul/Product/src/Type/Bundle.php index dfb959304..50ba8a075 100644 --- a/packages/Webkul/Product/src/Type/Bundle.php +++ b/packages/Webkul/Product/src/Type/Bundle.php @@ -499,7 +499,7 @@ class Bundle extends AbstractType */ public function compareOptions($options1, $options2) { - if ($this->product->id != $options2['product_id']) { + if (isset($options2['product_id']) && $this->product->id != $options2['product_id']) { return false; }