mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-03 23:38:49 +01:00
🐛 删除父文档时子文档排序配置未清理干净 Fix https://github.com/siyuan-note/siyuan/issues/6469
This commit is contained in:
parent
43ae47a902
commit
0b1e48c24a
2 changed files with 4 additions and 24 deletions
|
|
@ -1226,11 +1226,12 @@ func removeDoc(box *Box, p string) (err error) {
|
|||
|
||||
copyDocAssetsToDataAssets(box.ID, p)
|
||||
|
||||
rootID := tree.ID
|
||||
var removeIDs []string
|
||||
removeIDs = append(removeIDs, rootID)
|
||||
ids := rootChildIDs(tree.ID)
|
||||
removeIDs = append(removeIDs, ids...)
|
||||
|
||||
dir := path.Dir(p)
|
||||
childrenDir := path.Join(dir, rootID)
|
||||
childrenDir := path.Join(dir, tree.ID)
|
||||
existChildren := box.Exist(childrenDir)
|
||||
if existChildren {
|
||||
absChildrenDir := filepath.Join(util.DataDir, tree.Box, childrenDir)
|
||||
|
|
@ -1242,8 +1243,6 @@ func removeDoc(box *Box, p string) (err error) {
|
|||
indexHistoryDir(filepath.Base(historyDir), NewLute())
|
||||
|
||||
if existChildren {
|
||||
ids := util.GetChildDocIDs(filepath.Join(util.DataDir, tree.Box, childrenDir))
|
||||
removeIDs = append(removeIDs, ids...)
|
||||
if err = box.Remove(childrenDir); nil != err {
|
||||
return
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue