mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Fix Point of Sale with custom domains
This commit is contained in:
@@ -56,7 +56,7 @@ namespace BTCPayServer.Controllers
|
|||||||
var res = await controller.ViewCrowdfund(appId, null) as ViewResult;
|
var res = await controller.ViewCrowdfund(appId, null) as ViewResult;
|
||||||
if (res != null)
|
if (res != null)
|
||||||
{
|
{
|
||||||
res.ViewName = "/Views/AppsPublic/ViewCrowdfund.cshtml";
|
res.ViewName = $"/Views/{res.ViewName}.cshtml";
|
||||||
return res; // return
|
return res; // return
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,7 +72,7 @@ namespace BTCPayServer.Controllers
|
|||||||
var res = await controller.ViewPointOfSale(appId) as ViewResult;
|
var res = await controller.ViewPointOfSale(appId) as ViewResult;
|
||||||
if (res != null)
|
if (res != null)
|
||||||
{
|
{
|
||||||
res.ViewName = "/Views/AppsPublic/ViewPointOfSale.cshtml";
|
res.ViewName = $"/Views/{res.ViewName}.cshtml";
|
||||||
return res; // return
|
return res; // return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<Project>
|
<Project>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Version>1.0.5.0</Version>
|
<Version>1.0.5.1</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
Reference in New Issue
Block a user