From c2d34077890a3789c8dcc705705b10c1c3cdf662 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Sun, 19 Oct 2025 18:25:56 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/16152 --- app/src/protyle/export/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/protyle/export/index.ts b/app/src/protyle/export/index.ts index 8206ce1fd..1d5ff6131 100644 --- a/app/src/protyle/export/index.ts +++ b/app/src/protyle/export/index.ts @@ -628,7 +628,7 @@ const getExportPath = (option: IExportOptions, removeAssets?: boolean, mergeSubd } afterExport(exportResponse.data.path, msgId); } else { - onExport(exportResponse, savePath, option, removeAssets, msgId); + onExport(exportResponse, savePath, option, msgId); } }); } @@ -636,7 +636,7 @@ const getExportPath = (option: IExportOptions, removeAssets?: boolean, mergeSubd }; /// #endif -export const onExport = async (data: IWebSocketData, filePath: string, exportOption: IExportOptions, removeAssets?: boolean, msgId?: string) => { +export const onExport = async (data: IWebSocketData, filePath: string, exportOption: IExportOptions, msgId?: string) => { let themeName = window.siyuan.config.appearance.themeLight; let mode = 0; if (["html", "htmlmd"].includes(exportOption.type) && window.siyuan.config.appearance.mode === 1) {