Fixed edge case

This commit is contained in:
M66B
2019-12-09 09:31:09 +01:00
parent a5ec0f9f0f
commit 3447bf0236
3 changed files with 3 additions and 2 deletions

View File

@@ -53,6 +53,6 @@ public class TupleAccountState extends EntityAccount {
}
boolean shouldRun(boolean enabled) {
return (isEnabled(enabled) || operations > 0);
return (isEnabled(enabled) || (operations > 0 && synchronize));
}
}