From aeadb5f2db56af6657e5e6a9c43e8e3903080646 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 31 May 2024 10:37:42 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/11588 --- app/src/util/mount.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/util/mount.ts b/app/src/util/mount.ts index 626a5092c..9f0e576e4 100644 --- a/app/src/util/mount.ts +++ b/app/src/util/mount.ts @@ -96,7 +96,8 @@ export const mountHelp = () => { const notebookId = Constants.HELP_PATH[window.siyuan.config.appearance.lang as "zh_CN" | "en_US"]; fetchPost("/api/notebook/removeNotebook", {notebook: notebookId, callback: Constants.CB_MOUNT_REMOVE}, () => { fetchPost("/api/notebook/openNotebook", { - notebook: notebookId + notebook: notebookId, + app: Constants.SIYUAN_APPID, }); }); };