mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 12:55:18 +00:00
walker: recurse into directory based on node type
A broken directory might also not have a subtree.
This commit is contained in:
parent
1a9705fc95
commit
bc2399fbd9
@ -52,7 +52,7 @@ func FilterTree(ctx context.Context, repo BlobLoadSaver, nodepath string, nodeID
|
||||
continue
|
||||
}
|
||||
|
||||
if node.Subtree == nil {
|
||||
if node.Type != "dir" {
|
||||
err = tb.AddNode(node)
|
||||
if err != nil {
|
||||
return restic.ID{}, err
|
||||
|
Loading…
Reference in New Issue
Block a user