Auto keep alive debug

This commit is contained in:
M66B 2019-12-29 13:03:30 +01:00
parent dd04426be2
commit 5a8bd2000d
1 changed files with 4 additions and 2 deletions

View File

@ -1165,7 +1165,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
} else
EntityOperation.sync(this, folder.id, false);
} catch (Throwable ex) {
if (!first && !account.keep_alive_ok &&
if (BuildConfig.DEBUG &&
!first && !account.keep_alive_ok &&
account.poll_interval > 9 &&
state.getIdleTime() > (account.poll_interval - 1) * 60 * 1000L) {
account.keep_alive_failed++;
@ -1183,7 +1184,8 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
throw ex;
}
if (!first && !account.keep_alive_ok &&
if (BuildConfig.DEBUG &&
!first && !account.keep_alive_ok &&
account.poll_interval > 9 &&
state.getIdleTime() > (account.poll_interval - 1) * 60 * 1000L) {
account.keep_alive_ok = true;