From 7a99f9078e418b09fbd5396fbdb92594f68c1b66 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Mon, 24 Oct 2022 12:56:10 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20iframe=20=E4=BD=BF=E7=94=A8=E7=9F=AD?= =?UTF-8?q?=E7=BD=91=E5=9D=80=E4=BC=9A=E6=89=93=E5=BC=80=E6=B5=8F=E8=A7=88?= =?UTF-8?q?=E5=99=A8=E6=88=96=E8=B7=B3=E8=BD=AC=20APP=20Fix=20https://gith?= =?UTF-8?q?ub.com/siyuan-note/siyuan/issues/6327?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/electron/main.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/electron/main.js b/app/electron/main.js index 726b46ac6..6c4580fa1 100644 --- a/app/electron/main.js +++ b/app/electron/main.js @@ -336,12 +336,15 @@ const boot = () => { }) // iframe 使用短网址会打开浏览器或跳转 APP https://github.com/siyuan-note/siyuan/issues/6327 - mainWindow.webContents.on('will-redirect', (event, url) => { + mainWindow.webContents.on('will-redirect', (event, url, isInPlace, isMainFrame) => { if (url.startsWith('http://127.0.0.1:6806')) { return } - event.preventDefault() + if (!isMainFrame) { + event.preventDefault() + return + } }) mainWindow.on('close', (event) => {