Filter exception

This commit is contained in:
M66B 2020-02-12 09:16:24 +01:00
parent 8d45089601
commit c0e16dd005
1 changed files with 4 additions and 0 deletions

View File

@ -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=") ||