🎨 iframe 使用短网址会打开浏览器或跳转 APP Fix https://github.com/siyuan-note/siyuan/issues/6327

This commit is contained in:
Liang Ding 2022-10-24 12:17:21 +08:00
parent bbb818eb51
commit d8553c6e2a
No known key found for this signature in database
GPG key ID: 136F30F901A2231D

View file

@ -86,10 +86,8 @@ try {
}
} catch (e) {
console.error(e)
require('electron').
dialog.
showErrorBox('创建配置目录失败 Failed to create config directory',
'思源需要在用户家目录下创建配置文件夹(~/.config/siyuan请确保该路径具有写入权限。\n\nSiYuan needs to create a configuration folder (~/.config/siyuan) in the user\'s home directory. Please make sure that the path has write permissions.')
require('electron').dialog.showErrorBox('创建配置目录失败 Failed to create config directory',
'思源需要在用户家目录下创建配置文件夹(~/.config/siyuan请确保该路径具有写入权限。\n\nSiYuan needs to create a configuration folder (~/.config/siyuan) in the user\'s home directory. Please make sure that the path has write permissions.')
app.exit()
}
@ -332,10 +330,19 @@ const boot = () => {
if (url.startsWith('http://127.0.0.1:6806')) {
return
}
console.log("will-navigate", url)
event.preventDefault()
shell.openExternal(url)
})
// iframe 使用短网址会打开浏览器或跳转 APP https://github.com/siyuan-note/siyuan/issues/6327
mainWindow.webContents.on('will-redirect', (event, url) => {
if (url.startsWith('http://127.0.0.1:6806')) {
return
}
event.preventDefault()
})
mainWindow.on('close', (event) => {
if (mainWindow && !mainWindow.isDestroyed()) {
mainWindow.webContents.send('siyuan-save-close', false)