mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-19 15:04:19 +01:00
Fix currencyValue
This commit is contained in:
@@ -329,7 +329,7 @@ namespace BTCPayServer.Services.Apps
|
|||||||
{
|
{
|
||||||
PaymentMehtodId = p.Key,
|
PaymentMehtodId = p.Key,
|
||||||
Value = p.Select(v => v.Value).Sum(),
|
Value = p.Select(v => v.Value).Sum(),
|
||||||
CurrencyValue = p.Select(v => v.Value).Sum()
|
CurrencyValue = p.Select(v => v.CurrencyValue).Sum()
|
||||||
});
|
});
|
||||||
return new Contributions(contributions);
|
return new Contributions(contributions);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user