mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
Need valid tab id for scriptlet injection
This commit is contained in:
parent
a60a5c2772
commit
033aa9cfad
1 changed files with 1 additions and 0 deletions
|
@ -1135,6 +1135,7 @@ const webRequest = {
|
|||
vAPI.net.addListener(
|
||||
'onResponseStarted',
|
||||
details => {
|
||||
if ( details.tabId === -1 ) { return; }
|
||||
const pageStore = µb.pageStoreFromTabId(details.tabId);
|
||||
if ( pageStore === null ) { return; }
|
||||
if ( pageStore.getNetFilteringSwitch() === false ) { return; }
|
||||
|
|
Loading…
Reference in a new issue