1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-04-14 14:53:16 +00:00

Use "this" instead of "globalThis" as global scope

globalThis was introduced only on newer versions of JS
This commit is contained in:
Stypox 2025-02-04 10:22:10 +01:00
parent a60bb3e7af
commit 056809cb0d
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
2 changed files with 3 additions and 3 deletions

View File

@ -177,7 +177,7 @@ async function runBotGuard(rawChallengeData) {
const botguard = await BotGuardClient.create({
globalName: challengeData.globalName,
globalObj: globalThis,
globalObj: this,
program: challengeData.program
});

View File

@ -98,7 +98,7 @@ class PoTokenWebView private constructor(
try {
data = JSON.parse(String.raw`$responseBody`)
result = await runBotGuard(data)
globalThis.webPoSignalOutput = result.webPoSignalOutput
this.webPoSignalOutput = result.webPoSignalOutput
$JS_INTERFACE.onRunBotguardResult(result.botguardResponse)
} catch (error) {
$JS_INTERFACE.onJsInitializationError(error.toString())
@ -139,7 +139,7 @@ class PoTokenWebView private constructor(
webView.evaluateJavascript(
"""(async function() {
try {
globalThis.integrityToken = JSON.parse(String.raw`$responseBody`)
this.integrityToken = JSON.parse(String.raw`$responseBody`)
$JS_INTERFACE.onInitializationFinished(integrityToken[1])
} catch (error) {
$JS_INTERFACE.onJsInitializationError(error.toString())