mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Fix tests
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user