mirror of
https://github.com/octoleo/restic.git
synced 2024-11-29 16:23:59 +00:00
fuse: bugfix: ignore empty tags
This commit is contained in:
parent
faadbd734b
commit
b57ca64275
@ -78,7 +78,9 @@ func updateTagNames(d *TagsDir) {
|
|||||||
d.tags = make(map[string]bool, len(d.root.snapshots))
|
d.tags = make(map[string]bool, len(d.root.snapshots))
|
||||||
for _, snapshot := range d.root.snapshots {
|
for _, snapshot := range d.root.snapshots {
|
||||||
for _, tag := range snapshot.Tags {
|
for _, tag := range snapshot.Tags {
|
||||||
d.tags[tag] = true
|
if tag != "" {
|
||||||
|
d.tags[tag] = true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user