Skip to content

Commit

Permalink
Fix unpack regression (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkno authored Mar 2, 2024
1 parent be2a459 commit 8ff4e65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/unpack/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func Handler(w http.ResponseWriter, req *http.Request) {
return
}

newPath := strings.Join(components[1:], "/")
newPath := "/" + strings.Join(components[1:], "/")

fmt.Println("newPath", newPath)

Expand Down

0 comments on commit 8ff4e65

Please sign in to comment.