From 3685753c75af6e67b367031649bd140cb1302606 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 3 Dec 2025 19:23:41 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/16479 --- app/src/util/mount.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/util/mount.ts b/app/src/util/mount.ts index 9f0e576e4..26157dec5 100644 --- a/app/src/util/mount.ts +++ b/app/src/util/mount.ts @@ -16,9 +16,9 @@ export const fetchNewDailyNote = (app: App, notebook: string) => { app: Constants.SIYUAN_APPID, }, (response) => { /// #if MOBILE - openMobileFileById(app, response.data.id); + openMobileFileById(app, response.data.id, [Constants.CB_GET_SCROLL, Constants.CB_GET_FOCUS]); /// #else - openFileById({app, id: response.data.id, action: [Constants.CB_GET_FOCUS]}); + openFileById({app, id: response.data.id, action: [Constants.CB_GET_SCROLL, Constants.CB_GET_FOCUS]}); /// #endif }); };