From b9ed95a9eb746a1ddb7c868084d505f2ed3dd645 Mon Sep 17 00:00:00 2001 From: Mihail Slavchev Date: Mon, 21 Mar 2016 15:51:49 +0200 Subject: [PATCH] Merge pull request #1805 from slavchev/fix-issue-1614 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;