Waiting longer does not fix problems

This commit is contained in:
M66B 2020-02-26 19:53:30 +01:00
parent f37e738148
commit 633f3fbc3c
1 changed files with 1 additions and 1 deletions

View File

@ -1530,7 +1530,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
if (backoff <= CONNECT_BACKOFF_MAX) {
// Short back-off period, keep device awake
try {
state.acquire(backoff * 1000L * (state.getMaxConnections() ? 2 : 1));
state.acquire(backoff * 1000L);
} catch (InterruptedException ex) {
Log.w(account.name + " backoff " + ex.toString());
}