1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Set charset to utf-8 for Blob-based injected scriptlets

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/2431
This commit is contained in:
Raymond Hill 2023-01-01 09:30:56 -05:00
parent 72dabcac66
commit d10d0ff14f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -307,7 +307,7 @@ vAPI.Net = class extends vAPI.Net {
vAPI.scriptletsInjector = ((doc, scriptlets) => {
let script, url;
try {
const blob = new self.Blob([ scriptlets ], { type: 'text/javascript' });
const blob = new self.Blob([ scriptlets ], { type: 'text/javascript; charset=utf-8' });
url = self.URL.createObjectURL(blob);
script = doc.createElement('script');
script.async = false;