diff --git a/app/Ninja/PaymentDrivers/BasePaymentDriver.php b/app/Ninja/PaymentDrivers/BasePaymentDriver.php index 7818d018283e..b6c5b9eda994 100644 --- a/app/Ninja/PaymentDrivers/BasePaymentDriver.php +++ b/app/Ninja/PaymentDrivers/BasePaymentDriver.php @@ -369,7 +369,7 @@ class BasePaymentDriver { $invoice = $this->invoice(); $gatewayTypeAlias = $this->gatewayType == GATEWAY_TYPE_TOKEN ? $this->gatewayType : GatewayType::getAliasFromId($this->gatewayType); - $completeUrl = $this->invitation->getLink('complete') . '/' . $gatewayTypeAlias; + $completeUrl = $this->invitation->getLink('complete', true) . '/' . $gatewayTypeAlias; $data = [ 'amount' => $invoice->getRequestedAmount(),