diff --git a/BTCPayServer/Controllers/HomeController.cs b/BTCPayServer/Controllers/HomeController.cs index a53751087..58b65e59a 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/{res.ViewName}.cshtml"; + res.ViewName = $"/Views/AppsPublic/{res.ViewName}.cshtml"; return res; // return } @@ -72,7 +72,7 @@ namespace BTCPayServer.Controllers var res = await controller.ViewPointOfSale(appId) as ViewResult; if (res != null) { - res.ViewName = $"/Views/{res.ViewName}.cshtml"; + res.ViewName = $"/Views/AppsPublic/{res.ViewName}.cshtml"; return res; // return }