EOF on socket

This commit is contained in:
M66B 2020-12-18 17:51:21 +01:00
parent d961e7894e
commit 7b146ededa
1 changed files with 1 additions and 0 deletions

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