mirror of https://github.com/M66B/FairEmail.git
Check on starttls changed
This commit is contained in:
parent
a0620d72a1
commit
6ae9c8f872
|
@ -892,7 +892,7 @@ public class FragmentAccount extends FragmentBase {
|
|||
boolean check = (synchronize && (account == null ||
|
||||
!account.synchronize || account.error != null ||
|
||||
!account.insecure.equals(insecure) ||
|
||||
!host.equals(account.host) || Integer.parseInt(port) != account.port ||
|
||||
!host.equals(account.host) || starttls != account.starttls || Integer.parseInt(port) != account.port ||
|
||||
!user.equals(account.user) || !password.equals(account.password) ||
|
||||
!Objects.equals(realm, accountRealm)));
|
||||
boolean reload = (check || account == null ||
|
||||
|
|
Loading…
Reference in New Issue