mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-11 03:24:52 +02:00
Suppress interrupted waitIfIdle
This commit is contained in:
@@ -1447,6 +1447,10 @@ public class Log {
|
||||
ex.getCause() instanceof SocketException)
|
||||
return null;
|
||||
|
||||
if (ex instanceof ProtocolException &&
|
||||
ex.getCause() instanceof InterruptedException)
|
||||
return null; // Interrupted waitIfIdle
|
||||
|
||||
if (ex instanceof MessagingException &&
|
||||
("Not connected".equals(ex.getMessage()) || // POP3
|
||||
"connection failure".equals(ex.getMessage()) ||
|
||||
|
||||
Reference in New Issue
Block a user