1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

import fix for #2025, new revision for dev build

This commit is contained in:
gorhill 2016-09-24 17:35:53 -04:00
commit c538b260de
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock Origin",
"version": "1.9.9.1",
"version": "1.9.11.0",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock Origin",
"version": "1.9.9.1",
"version": "1.9.11.0",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View File

@ -1977,7 +1977,7 @@ FilterContainer.prototype.fromCompiledContent = function(lineIter) {
if ( token === '.' ) {
if ( entry === undefined ) {
entry = new FilterHostnameDict();
bucket.set('.', new FilterHostnameDict());
bucket.set('.', entry);
}
// 'fclass' is hostname
if ( entry.add(fclass) === false ) {