-
Notifications
You must be signed in to change notification settings - Fork 142
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace usage of electron.remote with more explicit IPC #1349
Labels
enhancement
New feature request or improvement to existing functionality
ooni/probe-desktop
priority/medium
Normal priority issue
Comments
This is 90% done. |
Superseeded by #2845 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature request or improvement to existing functionality
ooni/probe-desktop
priority/medium
Normal priority issue
Currently we use electron's
remote
module to perform key background operations like updating configuration, loading measurement data. This isn't a safe practice anymore and newer versions of electron discourage using the module. We should instead usecontextIsolation
and other recommdendations here to move away from this.This also prevents us from upgrading
electron
and leverage some other useful features.The text was updated successfully, but these errors were encountered: