1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

oops, * is a valid hostname placeholder

This commit is contained in:
gorhill 2015-03-23 19:47:41 -04:00
parent 29269617ab
commit 6450afefda

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;
}