From d8feefd783c78a8c15e8df66776d52bdded5a2e6 Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Wed, 16 Jul 2014 23:04:28 +0200 Subject: [PATCH] Fix BB release --- OsmAnd/src/net/osmand/plus/OsmandApplication.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OsmAnd/src/net/osmand/plus/OsmandApplication.java b/OsmAnd/src/net/osmand/plus/OsmandApplication.java index 2523063e73..dc5c9e01cf 100644 --- a/OsmAnd/src/net/osmand/plus/OsmandApplication.java +++ b/OsmAnd/src/net/osmand/plus/OsmandApplication.java @@ -511,7 +511,8 @@ public class OsmandApplication extends Application { LOG.error("I/O exception", e); warnings.add("Error while reading the special phrases. Restart OsmAnd if possible"); } - if (!Version.isBlackberry(this)) { + + if (!Version.isBlackberry(this) || !"qnx".equals(System.getProperty("os.name"))) { if (osmandSettings.NATIVE_RENDERING_FAILED.get()) { osmandSettings.SAFE_MODE.set(true); osmandSettings.NATIVE_RENDERING_FAILED.set(false);