Check on starttls changed

This commit is contained in:
M66B 2019-12-06 19:01:58 +01:00
parent a0620d72a1
commit 6ae9c8f872
1 changed files with 1 additions and 1 deletions

View File

@ -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 ||