Suppress "Unable to create layer"

This commit is contained in:
M66B 2019-07-08 08:45:09 +02:00
parent 5662a25a3c
commit f1393e5793
1 changed files with 3 additions and 1 deletions

View File

@ -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 &&