1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 08:52:26 +02:00

Fix bad cut-n-paste piece of code

Related commit:
- b1de8d3fe4
This commit is contained in:
Raymond Hill 2023-02-01 09:16:58 -05:00
parent 9e646abb8a
commit 7881e1ace3
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1564,7 +1564,7 @@ const compileDomainOpt = (ctors, iterable, prepend, units) => {
compiledMiss.push(ctors[5].compile(hn)); compiledMiss.push(ctors[5].compile(hn));
} }
for ( const hn of regexMisses ) { for ( const hn of regexMisses ) {
compiledHit.push(ctors[7].compile(hn)); compiledMiss.push(ctors[7].compile(hn));
} }
if ( prepend ) { if ( prepend ) {
if ( compiledHit.length !== 0 ) { if ( compiledHit.length !== 0 ) {