mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Filter OOM error
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user