mirror of https://github.com/M66B/FairEmail.git
Small improvement
This commit is contained in:
parent
62f6938bcb
commit
87b556ff97
|
@ -1746,10 +1746,10 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
|||
}
|
||||
|
||||
// Autofix too many simultaneous connections
|
||||
if (ConnectionHelper.isMaxConnections(last_fail)) {
|
||||
boolean auto_optimize = prefs.getBoolean("auto_optimize", false);
|
||||
if (auto_optimize ||
|
||||
account.last_connected == null ||
|
||||
boolean auto_optimize = prefs.getBoolean("auto_optimize", false);
|
||||
if (auto_optimize &&
|
||||
ConnectionHelper.isMaxConnections(last_fail)) {
|
||||
if (account.last_connected == null ||
|
||||
now - account.last_connected > AUTOFIX_TOO_MANY_FOLDERS) {
|
||||
int user = 0;
|
||||
int system = 0;
|
||||
|
|
Loading…
Reference in New Issue