From e7e271d6e1350fddc597f70c80727659f0027b64 Mon Sep 17 00:00:00 2001 From: Mihail Slavchev Date: Sat, 19 Mar 2016 11:46:12 +0200 Subject: [PATCH] fix issue #1614 --- ui/frame/frame.android.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/frame/frame.android.ts b/ui/frame/frame.android.ts index 255f1bb73..96ca4506d 100644 --- a/ui/frame/frame.android.ts +++ b/ui/frame/frame.android.ts @@ -710,7 +710,8 @@ class NativeScriptActivity extends android.app.Activity { if (frameId >= 0) { rootView = getFrameById(frameId); } - else if (!rootView) { + + if (!rootView) { navParam = application.mainEntry; if (!navParam) { navParam = application.mainModule;