Skip to content

Commit

Permalink
NTR: fix #768 apple pay verfiication url with special caracter
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalij Mik committed Jun 27, 2024
1 parent 68dc57e commit f9831c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public function addProduct(RequestDataBag $data, SalesChannelContext $context):
*/
public function createPaymentSession(RequestDataBag $data, SalesChannelContext $context): StoreApiResponse
{
$validationURL = $data->getAlnum('validationUrl');
$validationURL = $data->get('validationUrl');

if (empty($validationURL)) {
throw new \Exception('Please provide a validation url!');
Expand Down

0 comments on commit f9831c0

Please sign in to comment.