mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-04 07:48:49 +01:00
🎨 Improve sync guide tip https://github.com/siyuan-note/siyuan/issues/14198
This commit is contained in:
parent
fde4ec0ddb
commit
732e4ad329
1 changed files with 5 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue