Browse Source

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

Liang Ding 2 years ago
parent
commit
c9882b29d4
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/electron/main.js

+ 2 - 1
app/electron/main.js

@@ -330,7 +330,7 @@ const boot = () => {
     if (url.startsWith('http://127.0.0.1:6806')) {
       return
     }
-    console.log("will-navigate", url)
+
     event.preventDefault()
     shell.openExternal(url)
   })
@@ -340,6 +340,7 @@ const boot = () => {
     if (url.startsWith('http://127.0.0.1:6806')) {
       return
     }
+
     event.preventDefault()
   })