mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-04 11:54:10 +01: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