This commit is contained in:
Raymond Hill 2018-02-13 05:55:57 -05:00
parent 43eab7aff7
commit f484461d2e
No known key found for this signature in database
GPG key ID: 25E1490B761470C2
2 changed files with 2 additions and 2 deletions

View file

@ -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": {

View file

@ -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));