mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +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)
|
||||
{
|
||||
var result = await _PaymentRequestService.GetPaymentRequest(id, GetUserId());
|
||||
result.HubPath = PaymentRequestHub.GetHubPath(this.Request);
|
||||
if (result == null)
|
||||
{
|
||||
return NotFound();
|
||||
}
|
||||
|
||||
result.HubPath = PaymentRequestHub.GetHubPath(this.Request);
|
||||
return View(result);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue