added content-type serving exception tests

This commit is contained in:
Gani Georgiev
2026-05-05 11:40:07 +03:00
parent 8091a756e8
commit fe2d90641c
2 changed files with 84 additions and 9 deletions
+1 -1
View File
@@ -459,7 +459,7 @@ func (s *System) Serve(res http.ResponseWriter, req *http.Request, fileKey strin
// make an exception for specific content types and force a custom
// content type to send in the response so that it can be loaded properly
extContentType := realContentType
if ct, found := manualExtensionContentTypes[filepath.Ext(name)]; found {
if ct, found := manualExtensionContentTypes[filepath.Ext(fileKey)]; found {
extContentType = ct
}