mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-03 09:29:10 +01:00
Fix LN Node availability check (#3189)
This commit is contained in:
parent
f8e6b51e9d
commit
cf78987fab
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ namespace BTCPayServer.Controllers
|
|||
|
||||
return View(new ShowLightningNodeInfoViewModel
|
||||
{
|
||||
Available = true,
|
||||
Available = nodeInfo.Any(),
|
||||
NodeInfo = nodeInfo.Select(n => new ShowLightningNodeInfoViewModel.NodeData(n)).ToArray(),
|
||||
CryptoCode = cryptoCode,
|
||||
CryptoImage = GetImage(paymentMethodDetails.PaymentId, network),
|
||||
|
|
Loading…
Add table
Reference in a new issue