fix: need to string off forward slash at beginning to match manifest file paths

This commit is contained in:
Derrick Hammer 2023-08-15 09:20:11 -04:00
parent 66b9cd2022
commit 2f64f18e24
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -126,6 +126,8 @@ func Handler(ctx *context.Context) {
return
}
path = strings.TrimLeft(path, "/")
requestedPath, exists := manifest.Paths[path]
if !exists {