From fd62f882de4425b2bf88f4368188d981cc617dfe Mon Sep 17 00:00:00 2001 From: Andrew Camilleri Date: Tue, 15 Jan 2019 18:18:41 +0100 Subject: [PATCH] fix merge bug --- BTCPayServer/Controllers/AppsPublicController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BTCPayServer/Controllers/AppsPublicController.cs b/BTCPayServer/Controllers/AppsPublicController.cs index 966e781d6..10067e021 100644 --- a/BTCPayServer/Controllers/AppsPublicController.cs +++ b/BTCPayServer/Controllers/AppsPublicController.cs @@ -256,8 +256,7 @@ namespace BTCPayServer.Controllers BuyerEmail = email, OrderId = orderId, NotificationURL = notificationUrl, - RedirectURL = redirectUrl, -// RedirectURL = redirectUrl ?? Request.GetDisplayUrl(), + RedirectURL = redirectUrl ?? Request.GetDisplayUrl(), FullNotifications = true, }, store, HttpContext.Request.GetAbsoluteRoot()); return RedirectToAction(nameof(InvoiceController.Checkout), "Invoice", new { invoiceId = invoice.Data.Id });