Fix SignalR paths if RootPath is used

This commit is contained in:
nicolas.dorier
2019-03-09 16:08:31 +09:00
parent e8a346182b
commit 75974037bc
10 changed files with 32 additions and 7 deletions

View File

@@ -215,6 +215,7 @@ namespace BTCPayServer.Controllers
public async Task<IActionResult> ViewPaymentRequest(string id)
{
var result = await _PaymentRequestService.GetPaymentRequest(id, GetUserId());
result.HubPath = PaymentRequestHub.GetHubPath(this.Request);
if (result == null)
{
return NotFound();