Fixed service statistics

This commit is contained in:
M66B
2018-10-17 06:11:20 +00:00
parent 267410f1de
commit 4b457dadad
2 changed files with 22 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ package eu.faircode.email;
*/
public class TupleAccountStats {
public Integer accounts;
public Integer operations;
public Integer unsent;
public Integer accounts = 0;
public Integer operations = 0;
public Integer unsent = 0;
}