1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-25 15:32:52 +00:00

Revert "Silence IDLE exceptions"

This reverts commit 3b81917853.
This commit is contained in:
M66B 2019-02-21 09:17:16 +00:00
parent f746509b7b
commit ff5982cfa3

View file

@ -1167,7 +1167,9 @@ public class ServiceSynchronize extends LifecycleService {
((IMAPFolder) ifolder).idle(false);
}
} catch (Throwable ex) {
Log.w(folder.name, ex);
Log.e(folder.name, ex);
reportError(account, folder, ex);
db.folder().setFolderError(folder.id, Helper.formatThrowable(ex));
state.error();
} finally {
Log.i(folder.name + " end idle");