1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Fix logging of broad exception filter #@#+js()

Related feedback:
https://github.com/uBlockOrigin/uBlock-discussions/discussions/843

Regression from:
https://github.com/gorhill/uBlock/commit/1a863a877d
This commit is contained in:
Raymond Hill 2023-12-12 08:21:47 -05:00
parent a3e3cd9216
commit 4305ea9c0c
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -409,11 +409,7 @@ scriptletFilteringEngine.retrieve = function(request) {
// Wholly disable scriptlet injection?
if ( $exceptions.has('[]') ) {
return {
filters: [
{ tabId: request.tabId, url: request.url, filter: '#@#+js()' }
]
};
return { filters: '#@#+js()' };
}
for ( const token of $exceptions ) {