Skip to content

Commit 4305ea9

Browse files
committed
Fix logging of broad exception filter #@#+js()
Related feedback: uBlockOrigin/uBlock-discussions#843 Regression from: 1a863a877d
1 parent a3e3cd9 commit 4305ea9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/js/scriptlet-filtering.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -409,11 +409,7 @@ scriptletFilteringEngine.retrieve = function(request) {
409409

410410
// Wholly disable scriptlet injection?
411411
if ( $exceptions.has('[]') ) {
412-
return {
413-
filters: [
414-
{ tabId: request.tabId, url: request.url, filter: '#@#+js()' }
415-
]
416-
};
412+
return { filters: '#@#+js()' };
417413
}
418414

419415
for ( const token of $exceptions ) {

0 commit comments

Comments
 (0)