mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Reload on changing keep-alive interval
This commit is contained in:
@@ -678,7 +678,9 @@ public class FragmentAccount extends FragmentEx {
|
||||
boolean check = (synchronize && (account == null ||
|
||||
!host.equals(account.host) || Integer.parseInt(port) != account.port ||
|
||||
!user.equals(account.user) || !password.equals(account.password)));
|
||||
boolean reload = (account == null || account.synchronize != synchronize || check);
|
||||
boolean reload = (check || account == null ||
|
||||
account.synchronize != synchronize ||
|
||||
account.poll_interval.equals(Integer.parseInt(interval)));
|
||||
|
||||
// Check IMAP server
|
||||
if (check) {
|
||||
|
||||
Reference in New Issue
Block a user