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 }); };