mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-18 15:40:12 +01:00
🐛 第一次同步数据时报错 index.json 找不到 Fix https://github.com/siyuan-note/siyuan/issues/5133
This commit is contained in:
parent
5d7294ac5e
commit
f3bff8fdc0
1 changed files with 1 additions and 1 deletions
|
|
@ -557,7 +557,7 @@ func syncDir2WorkspaceData(boot bool) (upsertFiles, removeFiles []string, err er
|
|||
|
||||
modified := modifiedSyncList(unchanged)
|
||||
metaPath := filepath.Join(util.TempDir, "sync", pathJSON) // 使用前面解密验证时下载的临时文件
|
||||
indexPath := filepath.Join(Conf.Sync.GetSaveDir(), "index.json")
|
||||
indexPath := filepath.Join(util.TempDir, "sync", "index.json")
|
||||
decryptedDataDir, upsertFiles, err := recoverSyncData(metaPath, indexPath, modified)
|
||||
if nil != err {
|
||||
util.LogErrorf("decrypt data dir failed: %s", err)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue