зеркало из https://github.com/electron/electron.git
Setup protocol after ready has already fired
This commit is contained in:
Родитель
a6e3eeee2d
Коммит
802fca28f7
|
@ -9,9 +9,15 @@ exports.registerStandardSchemes = function (schemes) {
|
|||
registerStandardSchemes(schemes)
|
||||
}
|
||||
|
||||
app.once('ready', function () {
|
||||
const setupProtocol = function () {
|
||||
let protocol = session.defaultSession.protocol
|
||||
for (let method in protocol) {
|
||||
exports[method] = protocol[method].bind(protocol)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
if (app.isReady()) {
|
||||
setupProtocol()
|
||||
} else {
|
||||
app.once('ready', setupProtocol)
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче