You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For IPC message exchange context isolation is the best practice, but the following error throws up after enabling context isolation:
Uncaught Error: An object could not be cloned.
at Conference._loadConference (Conference.js:176:25)
the error is thrown in the following cone snippet of Conference.js:
// Setup Jitsi Meet Electron SDK on this renderer.
window.jitsiNodeAPI.setupRenderer(this._api, {
enableRemoteControl: ENABLE_REMOTE_CONTROL,
enableAlwaysOnTopWindow: this.props._alwaysOnTopWindowEnabled
});
After digging further, found the cause which is the setupRenderer function takes in the API native class which is not supported by the structured clone algorithm.
Please comment if anyone know any work around, Thanks!
The text was updated successfully, but these errors were encountered:
For IPC message exchange context isolation is the best practice, but the following error throws up after enabling context isolation:
the error is thrown in the following cone snippet of Conference.js:
After digging further, found the cause which is the setupRenderer function takes in the API native class which is not supported by the structured clone algorithm.
Please comment if anyone know any work around, Thanks!
The text was updated successfully, but these errors were encountered: