mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-28 18:34:27 +01:00
attempt to fix different casing in cryptocode of payments
This commit is contained in:
@@ -386,7 +386,7 @@ namespace BTCPayServer.Services.Invoices
|
||||
}
|
||||
public void UpdateTotals()
|
||||
{
|
||||
Rates = new Dictionary<string, decimal>();
|
||||
Rates = new Dictionary<string, decimal>(StringComparer.InvariantCultureIgnoreCase);
|
||||
foreach (var p in GetPaymentMethods())
|
||||
{
|
||||
Rates.TryAdd(p.Currency, p.Rate);
|
||||
|
||||
Reference in New Issue
Block a user