mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 09:47:13 +00:00
Filter exception
This commit is contained in:
parent
c832badf2c
commit
3cafd18c6e
1 changed files with 15 additions and 0 deletions
|
@ -469,6 +469,21 @@ public class Log {
|
||||||
*/
|
*/
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
if (ex instanceof InternalError &&
|
||||||
|
"Thread starting during runtime shutdown".equals(ex.getMessage()))
|
||||||
|
/*
|
||||||
|
java.lang.InternalError: Thread starting during runtime shutdown
|
||||||
|
java.lang.InternalError: Thread starting during runtime shutdown
|
||||||
|
at java.lang.Thread.nativeCreate(Native Method)
|
||||||
|
at java.lang.Thread.start(Thread.java:1063)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:921)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor.processWorkerExit(ThreadPoolExecutor.java:989)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1131)
|
||||||
|
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:588)
|
||||||
|
at java.lang.Thread.run(Thread.java:818)
|
||||||
|
*/
|
||||||
|
return false;
|
||||||
|
|
||||||
if ("android.app.RemoteServiceException".equals(ex.getClass().getName()))
|
if ("android.app.RemoteServiceException".equals(ex.getClass().getName()))
|
||||||
/*
|
/*
|
||||||
android.app.RemoteServiceException: Bad notification for startForeground: java.util.ConcurrentModificationException
|
android.app.RemoteServiceException: Bad notification for startForeground: java.util.ConcurrentModificationException
|
||||||
|
|
Loading…
Reference in a new issue