This commit is contained in:
Daniel 2025-02-24 21:38:09 +08:00
parent fde4ec0ddb
commit 732e4ad329
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

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