diff options
author | gorhill <rhill@raymondhill.net> | 2015-09-14 14:46:12 -0400 |
---|---|---|
committer | gorhill <rhill@raymondhill.net> | 2015-09-14 14:46:12 -0400 |
commit | c3c4d75e8e6d10f7e2eb66be70bb3c5010ebee17 (patch) | |
tree | 04f5af57895c70ecd620edcae5680f1ac1422d0d /platform | |
parent | 4e0fed18bbc77207ef62008198b3ef0e1862142e (diff) | |
download | uBlock-c3c4d75e8e6d10f7e2eb66be70bb3c5010ebee17.zip uBlock-c3c4d75e8e6d10f7e2eb66be70bb3c5010ebee17.tar.gz uBlock-c3c4d75e8e6d10f7e2eb66be70bb3c5010ebee17.tar.bz2 |
#697: mind Firefox for Android
Diffstat (limited to 'platform')
-rw-r--r-- | platform/firefox/vapi-background.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/firefox/vapi-background.js b/platform/firefox/vapi-background.js index fb6b5e2..a74fd23 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; } |