From 1a29be62fb9472405924aadab421e67abfbd2ab6 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 24 Sep 2016 17:19:52 -0400 Subject: [PATCH] fix #2025 --- platform/chromium/manifest.json | 2 +- platform/opera/manifest.json | 2 +- src/js/static-net-filtering.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 3f39f6dc1..df7d160cc 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.9.8", + "version": "1.9.10", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/platform/opera/manifest.json b/platform/opera/manifest.json index bf881b51c..ddb6f6c28 100644 --- a/platform/opera/manifest.json +++ b/platform/opera/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "uBlock Origin", - "version": "1.9.8", + "version": "1.9.10", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index a24ecd18b..42240af5a 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -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 ) {