feat: v1.5.2

This commit is contained in:
naiba
2025-01-01 01:02:02 +08:00
parent 3c72d6ce64
commit 7cb04d79ee
4 changed files with 6 additions and 6 deletions

View File

@@ -303,7 +303,7 @@ func (w *ginCustomWriter) WriteHeader(code int) {
}
func fileWithCustomStatusCode(c *gin.Context, filepath string, customCode int) {
http.ServeFile(newCustomWriter(c, customCode), c.Request, path.Clean(filepath))
http.ServeFile(newCustomWriter(c, customCode), c.Request, filepath)
}
func fallbackToFrontend(frontendDist fs.FS) func(*gin.Context) {
@@ -344,7 +344,7 @@ func fallbackToFrontend(frontendDist fs.FS) func(*gin.Context) {
}
return
}
localFilePath := path.Join(singleton.Conf.UserTemplate, path.Clean(c.Request.URL.Path))
localFilePath := path.Join(singleton.Conf.UserTemplate, c.Request.URL.Path)
if checkLocalFileOrFs(c, frontendDist, localFilePath, http.StatusOK) {
return
}