fix: need to string off forward slash at beginning to match manifest file paths
This commit is contained in:
parent
66b9cd2022
commit
2f64f18e24
|
@ -126,6 +126,8 @@ func Handler(ctx *context.Context) {
|
|||
return
|
||||
}
|
||||
|
||||
path = strings.TrimLeft(path, "/")
|
||||
|
||||
requestedPath, exists := manifest.Paths[path]
|
||||
|
||||
if !exists {
|
||||
|
|
Loading…
Reference in New Issue