From 308b758233b431cb291f006dc76a6cd7db007e2d Mon Sep 17 00:00:00 2001 From: Martyn Haigh Date: Fri, 1 May 2015 15:06:26 +0100 Subject: [PATCH] Bug 1157733 - Tab Queue: Load View action intent normally if not in Nightly (r=mcomella) --HG-- extra : rebase_source : b4bcd351eefa57f9796973fdd1e47cdace713199 --- mobile/android/base/tabqueue/TabQueueDispatcher.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/base/tabqueue/TabQueueDispatcher.java b/mobile/android/base/tabqueue/TabQueueDispatcher.java index e950ef498aee..f2eb262f4b8b 100644 --- a/mobile/android/base/tabqueue/TabQueueDispatcher.java +++ b/mobile/android/base/tabqueue/TabQueueDispatcher.java @@ -38,7 +38,7 @@ public class TabQueueDispatcher extends Locales.LocaleAwareActivity { // For the moment lets exit early and start fennec as normal if we're not in nightly with // the tab queue build flag. - if (!AppConstants.MOZ_ANDROID_TAB_QUEUE) { + if (!AppConstants.MOZ_ANDROID_TAB_QUEUE || !AppConstants.NIGHTLY_BUILD) { loadNormally(intent.getUnsafe()); return; }