mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Prevent crash
This commit is contained in:
parent
2a03d75639
commit
d4f1d92f9e
1 changed files with 2 additions and 2 deletions
|
@ -650,8 +650,8 @@ public class FragmentIdentity extends FragmentBase {
|
|||
!host.equals(identity.host) || Integer.parseInt(port) != identity.port ||
|
||||
!user.equals(identity.user) || !password.equals(identity.password) ||
|
||||
!Objects.equals(realm, identityRealm) ||
|
||||
use_ip != identity.use_ip) ||
|
||||
identity.error != null);
|
||||
use_ip != identity.use_ip ||
|
||||
identity.error != null));
|
||||
|
||||
Long last_connected = null;
|
||||
if (identity != null && synchronize == identity.synchronize)
|
||||
|
|
Loading…
Reference in a new issue