Skip to content

Commit 806a9bf

Browse files
Merge pull request #67 from zans-laksa/1794-auth-fixes
Quote ID Type Fix
2 parents efb6cc6 + 21a0d25 commit 806a9bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/Resolver/SaveCartItem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ protected function getGuestQuoteId(string $guestCardId): string
346346
$quoteIdMask = $this->quoteIdMaskFactory->create();
347347
$this->quoteIdMaskResource->load($quoteIdMask, $guestCardId, 'masked_id');
348348

349-
return $quoteIdMask->getQuoteId();
349+
return $quoteIdMask->getQuoteId() ?? '';
350350
}
351351

352352
/**

0 commit comments

Comments
 (0)