From c3c4d75e8e6d10f7e2eb66be70bb3c5010ebee17 Mon Sep 17 00:00:00 2001 From: gorhill Date: Mon, 14 Sep 2015 14:46:12 -0400 Subject: [PATCH] #697: mind Firefox for Android --- platform/firefox/vapi-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index fb6b5e2b5..a74fd2380 100644 --- a/platform/firefox/vapi-background.js +++ b/platform/firefox/vapi-background.js @@ -1921,7 +1921,7 @@ vAPI.net.registerListeners = function() { // https://github.com/gorhill/uBlock/issues/697 // Dismiss event if the associated tab is pending. var tab = tabWatcher.tabFromBrowser(browser); - if ( !tab || tab.hasAttribute('pending') ) { + if ( !vAPI.fennec && tab && tab.hasAttribute('pending') ) { return; }