mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 02:50:56 +01:00
Suppress "Unable to create layer"
This commit is contained in:
@@ -372,7 +372,9 @@ public class ApplicationEx extends Application {
|
||||
if (ex instanceof NoSuchMethodError)
|
||||
return false;
|
||||
|
||||
if (ex.getMessage() != null && ex.getMessage().startsWith("Bad notification posted"))
|
||||
if (ex.getMessage() != null &&
|
||||
(ex.getMessage().startsWith("Bad notification posted") ||
|
||||
ex.getMessage().startsWith("Unable to create layer")))
|
||||
return false;
|
||||
|
||||
if (ex instanceof TimeoutException &&
|
||||
|
||||
Reference in New Issue
Block a user