From 49442e237eea3e75d2cccfbaee37b808c7dac3c1 Mon Sep 17 00:00:00 2001 From: AlexVallat Date: Mon, 30 Mar 2015 09:00:35 +0100 Subject: [PATCH] Fix for #1122 --- platform/firefox/vapi-background.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index bd4ce9c45..7272b8eac 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -342,7 +342,8 @@ var tabWatcher = { return; } - if ( browser.webNavigation.busyFlags === 0 /*BUSY_FLAGS_NONE*/ ) { + if ( browser.webNavigation.busyFlags === 0 || /*BUSY_FLAGS_NONE*/ + browser.webNavigation.busyFlags === undefined) { vAPI.tabs.onNavigation({ frameId: 0, tabId: tabId,