1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-06 19:02:30 +01:00
This commit is contained in:
gorhill 2016-12-19 00:30:14 -05:00
parent c39adacc50
commit cec17097a4

View File

@ -1735,7 +1735,7 @@ FilterContainer.prototype.getFilterClass = function(details) {
if ( details.isRegex ) { if ( details.isRegex ) {
return FilterRegexHostname; return FilterRegexHostname;
} }
if ( this.reIsGeneric.test(s) ) { if ( this.reIsGeneric.test(s) || details.token === '*' ) {
if ( details.hostnameAnchored ) { if ( details.hostnameAnchored ) {
return FilterGenericHnAnchoredHostname; return FilterGenericHnAnchoredHostname;
} }
@ -1766,7 +1766,7 @@ FilterContainer.prototype.getFilterClass = function(details) {
if ( details.isRegex ) { if ( details.isRegex ) {
return FilterRegex; return FilterRegex;
} }
if ( this.reIsGeneric.test(s) ) { if ( this.reIsGeneric.test(s) || details.token === '*' ) {
if ( details.hostnameAnchored ) { if ( details.hostnameAnchored ) {
return FilterGenericHnAnchored; return FilterGenericHnAnchored;
} }