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:33:20 -05:00
parent d10d0ff14f
commit f8d2bd0ebb
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ vAPI.injectScriptlet = function(doc, text) {
if ( !doc ) { return; }
let script, url;
try {
const blob = new self.Blob([ text ], { type: 'text/javascript' });
const blob = new self.Blob([ text ], { type: 'text/javascript; charset=utf-8' });
url = self.URL.createObjectURL(blob);
script = doc.createElement('script');
script.async = false;