From a64e304d166bae28f75b3b95f164a23d8e42de87 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 9 Mar 2021 17:54:38 +0900 Subject: [PATCH] Fix new store showing incorrectly being paired to internal node --- BTCPayServer/Controllers/StoresController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Controllers/StoresController.cs b/BTCPayServer/Controllers/StoresController.cs index 69e1ab8d6..f9c3bd1bb 100644 --- a/BTCPayServer/Controllers/StoresController.cs +++ b/BTCPayServer/Controllers/StoresController.cs @@ -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;