Skip to content

Commit eddf353

Browse files
committed
Fix: Return proper path
1 parent c67c5c1 commit eddf353

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

registry/storage/driver/bunny/bunny.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ func (d *driver) List(ctx context.Context, path string) ([]string, error) {
8181
}
8282
var result []string
8383
for _, entry := range entries {
84-
result = append(result, entry.ObjectName)
84+
result = append(result, entry.Path)
8585
}
8686
return result, nil
8787
}

0 commit comments

Comments
 (0)