mirror of https://github.com/gorhill/uBlock.git
fix #2249
This commit is contained in:
parent
c39adacc50
commit
cec17097a4
|
@ -1735,7 +1735,7 @@ FilterContainer.prototype.getFilterClass = function(details) {
|
|||
if ( details.isRegex ) {
|
||||
return FilterRegexHostname;
|
||||
}
|
||||
if ( this.reIsGeneric.test(s) ) {
|
||||
if ( this.reIsGeneric.test(s) || details.token === '*' ) {
|
||||
if ( details.hostnameAnchored ) {
|
||||
return FilterGenericHnAnchoredHostname;
|
||||
}
|
||||
|
@ -1766,7 +1766,7 @@ FilterContainer.prototype.getFilterClass = function(details) {
|
|||
if ( details.isRegex ) {
|
||||
return FilterRegex;
|
||||
}
|
||||
if ( this.reIsGeneric.test(s) ) {
|
||||
if ( this.reIsGeneric.test(s) || details.token === '*' ) {
|
||||
if ( details.hostnameAnchored ) {
|
||||
return FilterGenericHnAnchored;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue