mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-10 17:26:05 +01:00
attempt to fix different casing in cryptocode of payments
This commit is contained in:
parent
0cfb0ba890
commit
076c20a3b7
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue