Fix new store showing incorrectly being paired to internal node

This commit is contained in:
nicolas.dorier
2021-03-09 17:54:38 +09:00
parent 30c7cbba96
commit a64e304d16

View File

@@ -546,7 +546,7 @@ namespace BTCPayServer.Controllers
vm.LightningNodes.Add(new StoreViewModel.LightningNode()
{
CryptoCode = paymentMethodId.CryptoCode,
Address = lightning?.GetExternalLightningUrl()?.BaseUri.AbsoluteUri ?? "Internal node",
Address = lightning?.GetDisplayableConnectionString(),
Enabled = !excludeFilters.Match(paymentMethodId)
});
break;