mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-22 15:04:07 +01:00
Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
parent
e17236b440
commit
c7dc67e055
2 changed files with 4 additions and 2 deletions
|
|
@ -1008,8 +1008,6 @@ func IsSubscriber() bool {
|
|||
}
|
||||
|
||||
func IsPaidUser() bool {
|
||||
// S3/WebDAV data sync and backup are available for a fee https://github.com/siyuan-note/siyuan/issues/8780
|
||||
|
||||
if IsSubscriber() {
|
||||
return true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -250,10 +250,14 @@ func checkSync(boot, exit, byHand bool) bool {
|
|||
switch Conf.Sync.Provider {
|
||||
case conf.ProviderSiYuan:
|
||||
if !IsSubscriber() {
|
||||
Conf.Sync.Enabled = false
|
||||
Conf.Save()
|
||||
return false
|
||||
}
|
||||
case conf.ProviderWebDAV, conf.ProviderS3, conf.ProviderLocal:
|
||||
if !IsPaidUser() {
|
||||
Conf.Sync.Enabled = false
|
||||
Conf.Save()
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue