fixed cache invalidation

This commit is contained in:
2021-10-14 23:46:48 +02:00
parent 439e5473b6
commit 8c6f59a6b4
3 changed files with 9 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ func (i ID) Parent() *ID {
parent := &ID{
Bucket: i.Bucket,
Key: filepath.Dir(i.Key),
Key: filepath.Dir(i.Key) + "/",
}
parent.Normalize()