mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Filter OOM error
This commit is contained in:
parent
b89901aace
commit
f4544885fc
1 changed files with 2 additions and 1 deletions
|
@ -511,7 +511,8 @@ public class Log {
|
|||
if (!isSupportedDevice())
|
||||
return false;
|
||||
|
||||
if (ex instanceof OutOfMemoryError)
|
||||
if (ex instanceof OutOfMemoryError ||
|
||||
ex.getCause() instanceof OutOfMemoryError)
|
||||
return false;
|
||||
|
||||
if (ex instanceof RemoteException)
|
||||
|
|
Loading…
Reference in a new issue