This commit is contained in:
Jason Kulatunga 2023-09-13 11:31:11 -07:00
parent 70ca68a6ec
commit 7078f784c4
No known key found for this signature in database
1 changed files with 4 additions and 2 deletions

View File

@ -15,6 +15,7 @@ import (
"io/fs" "io/fs"
"net/http" "net/http"
"os" "os"
"path"
"path/filepath" "path/filepath"
"strings" "strings"
) )
@ -269,7 +270,8 @@ func getDashboardFromDir(parentDir string, dirEntries []fs.DirEntry, fsReadFile
} }
//unmarshal file into map //unmarshal file into map
embeddedFile, err := fsReadFile(filepath.Join(parentDir, file.Name())) //have to use path (not filepath.Join) because of https://github.com/golang/go/issues/45230
embeddedFile, err := fsReadFile(path.Join(parentDir, file.Name()))
if err != nil { if err != nil {
return nil, err return nil, err
} }