diff --git a/electron_app/src/electron-main.js b/electron_app/src/electron-main.js index 4c6f584c1b..6da972fd6c 100644 --- a/electron_app/src/electron-main.js +++ b/electron_app/src/electron-main.js @@ -1,7 +1,7 @@ /* Copyright 2016 Aviral Dasgupta Copyright 2016 OpenMarket Ltd -Copyright 2018 New Vector Ltd +Copyright 2018, 2019 New Vector Ltd Copyright 2017, 2019 Michael Telatynski <7t3chguy@gmail.com> Licensed under the Apache License, Version 2.0 (the "License"); @@ -211,7 +211,14 @@ const launcher = new AutoLaunch({ // work. // Also mark it as secure (ie. accessing resources from this // protocol and HTTPS won't trigger mixed content warnings). -protocol.registerStandardSchemes(['vector'], {secure: true}); +protocol.registerSchemesAsPrivileged([{ + scheme: 'vector', + privileges: { + standard: true, + secure: true, + supportFetchAPI: true, + }, +}]); app.on('ready', () => { if (argv['devtools']) { diff --git a/electron_app/src/preload.js b/electron_app/src/preload.js index 3a4f7c9a4b..0862ec67a2 100644 --- a/electron_app/src/preload.js +++ b/electron_app/src/preload.js @@ -1,5 +1,5 @@ /* -Copyright 2018 New Vector Ltd +Copyright 2018, 2019 New Vector Ltd Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -14,16 +14,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -const { ipcRenderer, webFrame } = require('electron'); +const { ipcRenderer } = require('electron'); // expose ipcRenderer to the renderer process window.ipcRenderer = ipcRenderer; - -// Allow the fetch API to load resources from this -// protocol: this is necessary to load olm.wasm. -// (Also mark it a secure although we've already -// done this in the main process). -webFrame.registerURLSchemeAsPrivileged('vector', { - secure: true, - supportFetchAPI: true, -}); diff --git a/package.json b/package.json index ecebf276b0..43b164166e 100644 --- a/package.json +++ b/package.json @@ -154,7 +154,7 @@ }, "build": { "appId": "im.riot.app", - "electronVersion": "4.2.6", + "electronVersion": "5.0.7", "files": [ "node_modules/**", "src/**"