fix: correctly parse default_app path on windows (#18086)
This commit is contained in:
parent
496d796833
commit
913bd4c832
1 changed files with 5 additions and 1 deletions
|
@ -30,7 +30,11 @@ function isTrustedSender (webContents: Electron.WebContents) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const parsedUrl = new URL(webContents.getURL())
|
const parsedUrl = new URL(webContents.getURL())
|
||||||
return parsedUrl.protocol === 'file:' && parsedUrl.pathname === indexPath
|
const urlPath = process.platform === 'win32'
|
||||||
|
// Strip the prefixed "/" that occurs on windows
|
||||||
|
? path.resolve(parsedUrl.pathname.substr(1))
|
||||||
|
: parsedUrl.pathname
|
||||||
|
return parsedUrl.protocol === 'file:' && urlPath === indexPath
|
||||||
}
|
}
|
||||||
|
|
||||||
ipcMain.on('bootstrap', (event) => {
|
ipcMain.on('bootstrap', (event) => {
|
||||||
|
|
Loading…
Reference in a new issue