From d0188f42b7a9448aa3a1331edf0965c78c36fede Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sat, 27 Jun 2020 15:33:34 +0900 Subject: [PATCH] Fix crowdfound on root --- BTCPayServer/Controllers/HomeController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/HomeController.cs b/BTCPayServer/Controllers/HomeController.cs index 58b65e59a..94f139dd4 100644 --- a/BTCPayServer/Controllers/HomeController.cs +++ b/BTCPayServer/Controllers/HomeController.cs @@ -56,7 +56,7 @@ namespace BTCPayServer.Controllers var res = await controller.ViewCrowdfund(appId, null) as ViewResult; if (res != null) { - res.ViewName = $"/Views/AppsPublic/{res.ViewName}.cshtml"; + res.ViewName = $"/Views/AppsPublic/ViewCrowdfund.cshtml"; return res; // return }