Skip to content

Commit

Permalink
Merge pull request #67 from zans-laksa/1794-auth-fixes
Browse files Browse the repository at this point in the history
Quote ID Type Fix
  • Loading branch information
alfredsgenkins authored Apr 26, 2021
2 parents efb6cc6 + 21a0d25 commit 806a9bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/Resolver/SaveCartItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ protected function getGuestQuoteId(string $guestCardId): string
$quoteIdMask = $this->quoteIdMaskFactory->create();
$this->quoteIdMaskResource->load($quoteIdMask, $guestCardId, 'masked_id');

return $quoteIdMask->getQuoteId();
return $quoteIdMask->getQuoteId() ?? '';
}

/**
Expand Down

0 comments on commit 806a9bf

Please sign in to comment.