Skip to content

Commit

Permalink
Custom exchange URL bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
annevelden committed Jul 18, 2023
1 parent 7509625 commit d30dbd5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions upload/Pay/Controller/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ public function startTransaction()
}

$returnUrl = $this->url->link('extension/payment/' . $this->_paymentMethodName . '/finish');
$exchangeUrl = $this->url->link('extension/payment/' . $this->_paymentMethodName . '/exchange');

$customExchangeUrl = $this->config->get('payment_paynl_general_custom_exchange_url');
$customExchangeUrl = is_null($customExchangeUrl) ? '' : trim($customExchangeUrl);

Expand Down

0 comments on commit d30dbd5

Please sign in to comment.