Reload on authentication type change

This commit is contained in:
M66B
2019-02-02 17:59:40 +00:00
parent 4dd6b3524b
commit a72b99d498
2 changed files with 2 additions and 0 deletions

View File

@@ -827,6 +827,7 @@ public class FragmentAccount extends FragmentBase {
String accountRealm = (account == null ? null : account.realm);
boolean check = (synchronize && (account == null ||
auth_type != account.auth_type ||
!host.equals(account.host) || Integer.parseInt(port) != account.port ||
!user.equals(account.user) || !password.equals(account.password) ||
(realm == null ? accountRealm != null : !realm.equals(accountRealm))));