mirror of https://github.com/M66B/FairEmail.git
Filter exception
This commit is contained in:
parent
8d45089601
commit
c0e16dd005
|
@ -305,6 +305,10 @@ public class Log {
|
|||
ex.getMessage().startsWith("content://")))
|
||||
return false;
|
||||
|
||||
if (ex instanceof IOException &&
|
||||
ex.getCause() instanceof MessageRemovedException)
|
||||
return false;
|
||||
|
||||
if (ex instanceof IOException &&
|
||||
ex.getMessage() != null &&
|
||||
(ex.getMessage().startsWith("HTTP status=") ||
|
||||
|
|
Loading…
Reference in New Issue