From d30dbd5fc6d2bcdf8d5006ec8d69f062d9bcc44b Mon Sep 17 00:00:00 2001 From: Anne Date: Tue, 18 Jul 2023 20:06:57 +0200 Subject: [PATCH] Custom exchange URL bugfix --- upload/Pay/Controller/Payment.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/upload/Pay/Controller/Payment.php b/upload/Pay/Controller/Payment.php index 9177e9a..4033937 100755 --- a/upload/Pay/Controller/Payment.php +++ b/upload/Pay/Controller/Payment.php @@ -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);