1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-26 17:57:16 +00:00

EOF on socket

This commit is contained in:
M66B 2020-12-18 17:51:21 +01:00
parent d961e7894e
commit 7b146ededa

View file

@ -369,6 +369,7 @@ public class ConnectionHelper {
ex instanceof IOException ||
ex instanceof ConnectionException ||
ex instanceof AccountsException ||
"EOF on socket".equals(ex.getMessage()) ||
"failed to connect".equals(ex.getMessage()))
return true;
ex = ex.getCause();