An error is not a reason for save changes

This commit is contained in:
M66B 2020-02-07 19:22:01 +01:00
parent 870e87248d
commit 701725245a
2 changed files with 0 additions and 5 deletions

View File

@ -958,9 +958,6 @@ public class FragmentAccount extends FragmentBase {
if (!Objects.equals(account.move_to, move == null ? null : move.id))
return true;
if (account.error != null)
return true;
return false;
}

View File

@ -750,8 +750,6 @@ public class FragmentIdentity extends FragmentBase {
return true;
if (!Objects.equals(identity.bcc, bcc))
return true;
if (identity.error != null)
return true;
return false;
}