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; }