Prevent starting deleted accounts

This commit is contained in:
M66B 2019-12-28 13:17:04 +01:00
parent 209526e740
commit d529b75d90
1 changed files with 1 additions and 1 deletions

View File

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