diff --git a/BTCPayServer/Controllers/ServerController.cs b/BTCPayServer/Controllers/ServerController.cs index 86146b6fe..80fa8b11f 100644 --- a/BTCPayServer/Controllers/ServerController.cs +++ b/BTCPayServer/Controllers/ServerController.cs @@ -505,7 +505,7 @@ namespace BTCPayServer.Controllers public async Task Services() { var result = new ServicesViewModel(); - result.ExternalServices = _Options.ExternalServices; + result.ExternalServices = _Options.ExternalServices.ToList(); foreach (var externalService in _Options.OtherExternalServices) { result.OtherExternalServices.Add(new ServicesViewModel.OtherExternalService() diff --git a/BTCPayServer/Views/Server/P2PService.cshtml b/BTCPayServer/Views/Server/P2PService.cshtml index 16644481f..92bbc0c2c 100644 --- a/BTCPayServer/Views/Server/P2PService.cshtml +++ b/BTCPayServer/Views/Server/P2PService.cshtml @@ -29,7 +29,7 @@
QR Code connection

- You can use QR Code to connect @Model.WalletName from outside application.
+ You can use QR Code to connect to @Model.WalletName with compatible wallets.

@@ -42,6 +42,15 @@

Blockstream Green Wallet

+
+ +
+
+ +
+
+ +
@if (!Model.ShowQR) @@ -59,6 +68,13 @@
+

See QR Code information by clicking here

+
+
+ + +
+
}