mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
import fix for #2025, new revision for dev build
This commit is contained in:
commit
c538b260de
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "uBlock Origin",
|
"name": "uBlock Origin",
|
||||||
"version": "1.9.9.1",
|
"version": "1.9.11.0",
|
||||||
|
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_extShortDesc__",
|
"description": "__MSG_extShortDesc__",
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "uBlock Origin",
|
"name": "uBlock Origin",
|
||||||
"version": "1.9.9.1",
|
"version": "1.9.11.0",
|
||||||
|
|
||||||
"default_locale": "en",
|
"default_locale": "en",
|
||||||
"description": "__MSG_extShortDesc__",
|
"description": "__MSG_extShortDesc__",
|
||||||
|
|
|
@ -1977,7 +1977,7 @@ FilterContainer.prototype.fromCompiledContent = function(lineIter) {
|
||||||
if ( token === '.' ) {
|
if ( token === '.' ) {
|
||||||
if ( entry === undefined ) {
|
if ( entry === undefined ) {
|
||||||
entry = new FilterHostnameDict();
|
entry = new FilterHostnameDict();
|
||||||
bucket.set('.', new FilterHostnameDict());
|
bucket.set('.', entry);
|
||||||
}
|
}
|
||||||
// 'fclass' is hostname
|
// 'fclass' is hostname
|
||||||
if ( entry.add(fclass) === false ) {
|
if ( entry.add(fclass) === false ) {
|
||||||
|
|
Loading…
Reference in a new issue