mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
Fix tests
This commit is contained in:
parent
c73dc425ad
commit
28bf4b42bb
1 changed files with 1 additions and 2 deletions
|
@ -215,12 +215,11 @@ namespace BTCPayServer.Controllers
|
||||||
public async Task<IActionResult> ViewPaymentRequest(string id)
|
public async Task<IActionResult> ViewPaymentRequest(string id)
|
||||||
{
|
{
|
||||||
var result = await _PaymentRequestService.GetPaymentRequest(id, GetUserId());
|
var result = await _PaymentRequestService.GetPaymentRequest(id, GetUserId());
|
||||||
result.HubPath = PaymentRequestHub.GetHubPath(this.Request);
|
|
||||||
if (result == null)
|
if (result == null)
|
||||||
{
|
{
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
|
result.HubPath = PaymentRequestHub.GetHubPath(this.Request);
|
||||||
return View(result);
|
return View(result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue