Use "this" instead of "globalThis" as global scope
globalThis was introduced only on newer versions of JS
This commit is contained in:
parent
a60bb3e7af
commit
056809cb0d
2 changed files with 3 additions and 3 deletions
|
|
@ -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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue