mirror of https://github.com/gorhill/uBlock.git
this fixes #903
This commit is contained in:
parent
f9eb8de0a0
commit
7ad472e75d
|
@ -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__",
|
||||
|
|
|
@ -85,7 +85,7 @@ return {
|
|||
|
||||
// read-only
|
||||
systemSettings: {
|
||||
compiledMagic: 'riimnrvxjchy',
|
||||
compiledMagic: 'iolkecdtfsiy',
|
||||
selfieMagic: 'spqmeuaftfra'
|
||||
},
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue