Suppress "Unable to create layer"

pull/157/head
M66B 5 years ago
parent 5662a25a3c
commit f1393e5793

@ -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…
Cancel
Save