From 7ad472e75d0a603a7a59698efc5412f5289ea6cf Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 28 Feb 2015 10:00:12 -0500 Subject: [PATCH] this fixes #903 --- platform/chromium/manifest.json | 2 +- src/js/background.js | 2 +- src/js/static-net-filtering.js | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/platform/chromium/manifest.json b/platform/chromium/manifest.json index 8fd751494..57ff1ab15 100644 --- a/platform/chromium/manifest.json +++ b/platform/chromium/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "µBlock", - "version": "0.8.9.0", + "version": "0.8.9.1", "default_locale": "en", "description": "__MSG_extShortDesc__", diff --git a/src/js/background.js b/src/js/background.js index 754d002e1..aa8033fad 100644 --- a/src/js/background.js +++ b/src/js/background.js @@ -85,7 +85,7 @@ return { // read-only systemSettings: { - compiledMagic: 'riimnrvxjchy', + compiledMagic: 'iolkecdtfsiy', selfieMagic: 'spqmeuaftfra' }, diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index c345f3b0f..792d130d4 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -749,7 +749,7 @@ FilterSingleWildcardLeftAnchored.compile = function(details) { var s = details.f; var pos = s.indexOf('*'); return s.slice(0, pos) + '\t' + - s.slice(pos + 1) + '\t'; + s.slice(pos + 1); }; FilterSingleWildcardLeftAnchored.fromSelfie = function(s) { @@ -823,7 +823,7 @@ FilterSingleWildcardRightAnchored.compile = function(details) { var s = details.f; var pos = s.indexOf('*'); return s.slice(0, pos) + '\t' + - s.slice(pos + 1) + '\t'; + s.slice(pos + 1); }; FilterSingleWildcardRightAnchored.fromSelfie = function(s) {