mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Suppress "Unable to create layer"
This commit is contained in:
parent
5662a25a3c
commit
f1393e5793
1 changed files with 3 additions and 1 deletions
|
@ -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 &&
|
||||
|
|
Loading…
Reference in a new issue