mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
Fix: Exchangerate.host falsly appear as Yadio in the UI (Fix #5347)
This commit is contained in:
@@ -862,8 +862,8 @@ namespace BTCPayServer.Controllers
|
||||
private IEnumerable<AvailableRateProvider> GetSupportedExchanges()
|
||||
{
|
||||
return _RateFactory.RateProviderFactory.AvailableRateProviders
|
||||
.Where(r => !string.IsNullOrWhiteSpace(r.Name))
|
||||
.OrderBy(s => s.Id, StringComparer.OrdinalIgnoreCase);
|
||||
.Where(r => !string.IsNullOrWhiteSpace(r.DisplayName))
|
||||
.OrderBy(s => s.DisplayName, StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user