From 732e4ad329e4d028162f5196d28b9527c8f8270e Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Mon, 24 Feb 2025 21:38:09 +0800 Subject: [PATCH] :art: Improve sync guide tip https://github.com/siyuan-note/siyuan/issues/14198 --- app/src/sync/syncGuide.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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; }