mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Added fail-safe
This commit is contained in:
@@ -964,7 +964,11 @@ public class ServiceSynchronize extends ServiceBase implements SharedPreferences
|
||||
EntityLog.log(ServiceSynchronize.this, account.name + " notice: " + message);
|
||||
|
||||
// Store NOOP
|
||||
iservice.getStore().isConnected();
|
||||
try {
|
||||
iservice.getStore().isConnected();
|
||||
} catch (Throwable ex) {
|
||||
Log.e(ex);
|
||||
}
|
||||
|
||||
if ("Still here".equals(message) && !isTransient(account)) {
|
||||
long now = new Date().getTime();
|
||||
|
||||
Reference in New Issue
Block a user