Skip to content

Commit

Permalink
Merge pull request #16 from paynl/feature/PLUG-2205
Browse files Browse the repository at this point in the history
PLUG-2205 - Custom exchange URL bugfix
  • Loading branch information
woutse authored Jul 20, 2023
2 parents 7509625 + d30dbd5 commit 6b4a15d
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 6b4a15d

Please sign in to comment.