diff options
-rw-r--r-- | fxjs/cfxjse_context.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fxjs/cfxjse_context.cpp b/fxjs/cfxjse_context.cpp index 40882bac56..87ec30f9c3 100644 --- a/fxjs/cfxjse_context.cpp +++ b/fxjs/cfxjse_context.cpp @@ -198,7 +198,8 @@ std::unique_ptr<CFXJSE_Value> CFXJSE_Context::GetGlobalObject() { CFXJSE_ScopeUtil_IsolateHandleContext scope(this); v8::Local<v8::Context> hContext = v8::Local<v8::Context>::New(m_pIsolate, m_hContext); - v8::Local<v8::Object> hGlobalObject = hContext->Global(); + v8::Local<v8::Object> hGlobalObject = + FXJSE_GetGlobalObjectFromContext(hContext); pValue->ForceSetValue(hGlobalObject); return pValue; } |