diff --git a/app/src/sync/syncGuide.ts b/app/src/sync/syncGuide.ts index 600ee04b6..e19afc8f0 100644 --- a/app/src/sync/syncGuide.ts +++ b/app/src/sync/syncGuide.ts @@ -148,8 +148,11 @@ export const syncGuide = (app?: App) => { return; } /// #if MOBILE - if ((0 === window.siyuan.config.sync.provider && needSubscribe()) || - (0 !== window.siyuan.config.sync.provider && !isPaidUser())) { + if (0 === window.siyuan.config.sync.provider) { + if (needSubscribe()) { + return + } + } else if (!isPaidUser()) { showMessage(window.siyuan.languages["_kernel"][214]); return; }