mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-09 18:43:23 +02:00
Check on account/identity error
This commit is contained in:
@@ -833,13 +833,16 @@ public class FragmentAccount extends FragmentBase {
|
||||
if (!Objects.equals(account.swipe_right, right == null ? null : right.id == null ? -1L : right.id))
|
||||
return true;
|
||||
|
||||
if (account.error != null)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
String accountRealm = (account == null ? null : account.realm);
|
||||
|
||||
boolean check = (synchronize && (account == null ||
|
||||
!account.synchronize ||
|
||||
!account.synchronize || account.error != null ||
|
||||
!host.equals(account.host) || Integer.parseInt(port) != account.port ||
|
||||
!user.equals(account.user) || !password.equals(account.password) ||
|
||||
!Objects.equals(realm, accountRealm) ||
|
||||
|
||||
@@ -659,6 +659,8 @@ public class FragmentIdentity extends FragmentBase {
|
||||
return true;
|
||||
if (!Objects.equals(identity.store_sent, store_sent))
|
||||
return true;
|
||||
if (identity.error != null)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
@@ -666,7 +668,7 @@ public class FragmentIdentity extends FragmentBase {
|
||||
String identityRealm = (identity == null ? null : identity.realm);
|
||||
|
||||
boolean check = (synchronize && (identity == null ||
|
||||
!identity.synchronize ||
|
||||
!identity.synchronize || identity.error != null ||
|
||||
!host.equals(identity.host) || Integer.parseInt(port) != identity.port ||
|
||||
!user.equals(identity.user) || !password.equals(identity.password) ||
|
||||
!Objects.equals(realm, identityRealm) ||
|
||||
|
||||
Reference in New Issue
Block a user