From 7881e1ace383f769d438c2829aa1255de13d8ea8 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Wed, 1 Feb 2023 09:16:58 -0500 Subject: [PATCH] Fix bad cut-n-paste piece of code Related commit: - https://github.com/gorhill/uBlock/commit/b1de8d3fe48755da58268ba86dccd5d76940b613 --- src/js/static-net-filtering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index fb2794237..0ec70c04f 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -1564,7 +1564,7 @@ const compileDomainOpt = (ctors, iterable, prepend, units) => { compiledMiss.push(ctors[5].compile(hn)); } for ( const hn of regexMisses ) { - compiledHit.push(ctors[7].compile(hn)); + compiledMiss.push(ctors[7].compile(hn)); } if ( prepend ) { if ( compiledHit.length !== 0 ) {