oops, `*` is a valid hostname placeholder

This commit is contained in:
gorhill 2015-03-23 19:47:41 -04:00
parent 29269617ab
commit 6450afefda
1 changed files with 3 additions and 1 deletions

View File

@ -542,7 +542,9 @@ Matrix.prototype.fromString = function(text, append) {
// https://github.com/gorhill/uBlock/issues/1082
// Discard rules with invalid hostnames
if ( reBadHostname.test(srcHostname) || reBadHostname.test(desHostname) ) {
if ( (srcHostname !== '*' && reBadHostname.test(srcHostname)) ||
(desHostname !== '*' && reBadHostname.test(desHostname))
) {
continue;
}