Folder I/O exception

This commit is contained in:
M66B 2021-04-23 16:39:19 +02:00
parent c249e3d5e0
commit 8bf2b92b6b
1 changed files with 2 additions and 0 deletions

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 ||