From 6726f278e531dd60c38f6919a0ba8f41f34c8b70 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Wed, 22 Mar 2017 21:41:01 +0200 Subject: [PATCH] Update Android app link --- README.md | 2 +- app/Ninja/PaymentDrivers/BasePaymentDriver.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4ede9fed6..9346371170 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![Docs](https://readthedocs.org/projects/invoice-ninja/badge/?version=latest)](http://docs.invoiceninja.com/en/latest/?badge=latest) [![Join the chat at https://gitter.im/hillelcoren/invoice-ninja](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/hillelcoren/invoice-ninja?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -## [Hosted](https://www.invoiceninja.com) | [Self-hosted](https://www.invoiceninja.org) | [iPhone](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1072566815&mt=8) | [Android (Beta)](https://play.google.com/apps/testing/com.invoiceninja.invoiceninja) +## [Hosted](https://www.invoiceninja.com) | [Self-hosted](https://www.invoiceninja.org) | [iPhone](https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1072566815&mt=8) | [Android](https://play.google.com/store/apps/details?id=com.invoiceninja.invoiceninja) Watch this [YouTube Video](https://www.youtube.com/watch?v=xHGKvadapbA) for an overview of the app's features. diff --git a/app/Ninja/PaymentDrivers/BasePaymentDriver.php b/app/Ninja/PaymentDrivers/BasePaymentDriver.php index 9d6127346b..0a165d8f24 100644 --- a/app/Ninja/PaymentDrivers/BasePaymentDriver.php +++ b/app/Ninja/PaymentDrivers/BasePaymentDriver.php @@ -359,7 +359,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(),