1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-22 07:42:52 +00:00

Yahoo: restart every minute

This commit is contained in:
M66B 2024-11-29 18:12:23 +01:00
parent fc40808cb8
commit af221f9117

View file

@ -1671,6 +1671,10 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
if (account.keep_alive_noop) {
int timeout = prefs.getInt("timeout", EmailService.DEFAULT_CONNECT_TIMEOUT);
if (account.isYahoo() && timeout < 60) {
int factor = 60 / timeout;
iservice.setRestartIdleInterval(timeout * factor);
} else
iservice.setRestartIdleInterval(timeout * 2 * 6); // 20 x 2 x 6 = 4 min
}