1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Folder I/O exception

This commit is contained in:
M66B 2021-04-23 16:39:19 +02:00
parent c249e3d5e0
commit 8bf2b92b6b

View file

@ -34,6 +34,7 @@ import androidx.annotation.Nullable;
import androidx.preference.PreferenceManager;
import com.sun.mail.iap.ConnectionException;
import com.sun.mail.util.FolderClosedIOException;
import java.io.IOException;
import java.util.Arrays;
@ -374,6 +375,7 @@ public class ConnectionHelper {
while (ex != null) {
if (isMaxConnections(ex.getMessage()) ||
ex instanceof IOException ||
ex instanceof FolderClosedIOException ||
ex instanceof ConnectionException ||
ex instanceof AccountsException ||
ex instanceof InterruptedException ||