diff --git a/BTCPayServer/Services/Apps/AppService.cs b/BTCPayServer/Services/Apps/AppService.cs index 13cc95fef..739f0f6f4 100644 --- a/BTCPayServer/Services/Apps/AppService.cs +++ b/BTCPayServer/Services/Apps/AppService.cs @@ -152,7 +152,9 @@ namespace BTCPayServer.Services.Apps PaymentStats = currentPayments.ToDictionary(c => c.Key.ToString(), c => c.Value.Value), PendingPaymentStats = pendingPayments.ToDictionary(c => c.Key.ToString(), c => c.Value.Value), LastResetDate = lastResetDate, - NextResetDate = nextResetDate + NextResetDate = nextResetDate, + CurrentPendingAmount = pendingPayments.TotalCurrency, + CurrentAmount = currentPayments.TotalCurrency } }; }