Stop retrying when polling

This commit is contained in:
M66B 2020-02-14 18:16:57 +01:00
parent 7a456b9cdd
commit 866c873649
1 changed files with 5 additions and 0 deletions

View File

@ -1469,6 +1469,11 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
Log.w(account.name + " backoff " + ex.toString());
}
} else {
// Stop retrying when polling
int pollInterval = prefs.getInt("poll_interval", 0);
if (pollInterval > 0 && !account.poll_exempted)
break;
// Long back-off period, let device sleep
Intent intent = new Intent(ServiceSynchronize.this, ServiceSynchronize.class);
intent.setAction("backoff:" + account.id);