Skip to content
This repository has been archived by the owner on Sep 9, 2022. It is now read-only.

Commit

Permalink
this fixes #903
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Feb 28, 2015
1 parent f9eb8de commit 7ad472e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion platform/chromium/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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__",
Expand Down
2 changes: 1 addition & 1 deletion src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ return {

// read-only
systemSettings: {
compiledMagic: 'riimnrvxjchy',
compiledMagic: 'iolkecdtfsiy',
selfieMagic: 'spqmeuaftfra'
},

Expand Down
4 changes: 2 additions & 2 deletions src/js/static-net-filtering.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 7ad472e

Please sign in to comment.