Fixed operation count

This commit is contained in:
M66B 2019-12-09 08:33:25 +01:00
parent 4023d98060
commit d903e3636d
1 changed files with 2 additions and 1 deletions

View File

@ -235,7 +235,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
runService = true;
if ("connected".equals(current.accountState.state))
accounts++;
operations += current.accountState.operations;
if (current.accountState.synchronize)
operations += current.accountState.operations;
int index = accountStates.indexOf(current);
if (index < 0) {