Merge pull request #301 from svher/master

fix object path parse error
This commit is contained in:
Josh Baker 2022-11-21 18:52:24 -07:00 committed by GitHub
commit f37cc44a28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1009,8 +1009,8 @@ func parseObjectPath(path string) (r objectPathResult) {
r.piped = true
} else {
r.path = path[i+1:]
r.more = true
}
r.more = true
return
} else if path[i] == '|' {
r.part = string(epart)