Consider account exceptions as I/O

pull/174/head
M66B 6 years ago
parent 5e067f553a
commit 683edaf15c

@ -19,6 +19,7 @@ package eu.faircode.email;
Copyright 2018-2020 by Marcel Bokhorst (M66B) Copyright 2018-2020 by Marcel Bokhorst (M66B)
*/ */
import android.accounts.AccountsException;
import android.app.AlarmManager; import android.app.AlarmManager;
import android.app.NotificationManager; import android.app.NotificationManager;
import android.app.PendingIntent; import android.app.PendingIntent;
@ -859,6 +860,7 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
if (max || if (max ||
c instanceof IOException || c instanceof IOException ||
c instanceof ConnectionException || c instanceof ConnectionException ||
c instanceof AccountsException ||
"failed to connect".equals(ex.getMessage())) { "failed to connect".equals(ex.getMessage())) {
ioError = true; ioError = true;
break; break;

Loading…
Cancel
Save