1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

Do not inject scriptlets on navigation events in Firefox

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/2343
This commit is contained in:
Raymond Hill 2022-10-28 11:07:46 -04:00
parent df1542e382
commit 4863f3093e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -916,6 +916,10 @@ vAPI.Tabs = class extends vAPI.Tabs {
// For non-network URIs, defer scriptlet injection to content script. The
// reason for this is that we need the effective URL and this information
// is not available at this point.
//
// https://github.com/uBlockOrigin/uBlock-issues/issues/2343
// uBO's isolated world in Firefox just does not work as expected at
// point, so we have to wait before injecting scriptlets.
onNavigation(details) {
super.onNavigation(details);
const { frameId, tabId, url } = details;
@ -929,7 +933,10 @@ vAPI.Tabs = class extends vAPI.Tabs {
const pageStore = µb.pageStoreFromTabId(tabId);
if ( pageStore === null ) { return; }
pageStore.setFrameURL(details);
if ( pageStore.getNetFilteringSwitch() ) {
if (
vAPI.webextFlavor.soup.has('firefox') === false &&
pageStore.getNetFilteringSwitch()
) {
scriptletFilteringEngine.injectNow(details);
}
}