mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
fix #3507
This commit is contained in:
parent
43eab7aff7
commit
f484461d2e
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
|
|
||||||
"name": "uBlock Origin",
|
"name": "uBlock Origin",
|
||||||
"version": "1.15.4",
|
"version": "1.15.6",
|
||||||
|
|
||||||
"commands": {
|
"commands": {
|
||||||
"launch-element-zapper": {
|
"launch-element-zapper": {
|
||||||
|
|
|
||||||
|
|
@ -745,7 +745,7 @@ var filterDocument = (function() {
|
||||||
utf8TextDecoder = new TextDecoder();
|
utf8TextDecoder = new TextDecoder();
|
||||||
}
|
}
|
||||||
doc = domParser.parseFromString(
|
doc = domParser.parseFromString(
|
||||||
utf8TextDecoder.decode(filterer.buffer.slice(0, 1024)),
|
utf8TextDecoder.decode(filterer.buffer.slice(0, 2048)),
|
||||||
'text/html'
|
'text/html'
|
||||||
);
|
);
|
||||||
filterer.charset = µb.textEncode.normalizeCharset(charsetFromDoc(doc));
|
filterer.charset = µb.textEncode.normalizeCharset(charsetFromDoc(doc));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue