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
1 changed files with 3 additions and 1 deletions

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");