1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 01:59:38 +02:00
This commit is contained in:
gorhill 2016-09-05 18:45:10 -04:00
parent 57a7558f6a
commit d07baef742

View File

@ -1304,7 +1304,7 @@ var FilterParser = function() {
this.reHasUppercase = /[A-Z]/;
this.reIsolateHostname = /^(\*?\.)?([^\x00-\x24\x26-\x2C\x2F\x3A-\x5E\x60\x7B-\x7F]+)(.*)/;
this.reHasUnicode = /[^\x00-\x7F]/;
this.reWebsocketAny = /^wss?:(?:\/\/)?$/;
this.reWebsocketAny = /^ws[s*]?:\/?\/?\*?$/;
this.domainOpt = '';
this.reset();
};