From df89ad3cbfbc2f8288e5b1bf917d47e9e7a8267f Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 12 Jan 2023 14:57:56 +0800 Subject: [PATCH] :art: fix https://github.com/siyuan-note/siyuan/issues/7054 --- app/src/protyle/export/index.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/src/protyle/export/index.ts b/app/src/protyle/export/index.ts index 07ef34c57..4fe61b440 100644 --- a/app/src/protyle/export/index.ts +++ b/app/src/protyle/export/index.ts @@ -1,7 +1,7 @@ import {hideMessage, showMessage} from "../../dialog/message"; import {Constants} from "../../constants"; /// #if !BROWSER -import {OpenDialogReturnValue} from "electron"; +import {OpenDialogReturnValue, shell} from "electron"; import {app, BrowserWindow, dialog, getCurrentWindow} from "@electron/remote"; import * as fs from "fs"; import * as path from "path"; @@ -469,6 +469,13 @@ const renderPDF = (id: string) => { webSecurity: false, }, }); + window.siyuan.printWin.webContents.on('will-navigate', (event, url) => { + if (url.indexOf(location.host) > -1) { + return + } + event.preventDefault() + shell.openExternal(url) + }) window.siyuan.printWin.webContents.userAgent = `SiYuan/${app.getVersion()} https://b3log.org/siyuan Electron`; fetchPost("/api/export/exportTempContent", {content: html}, (response) => { window.siyuan.printWin.loadURL(response.data.url);