Fix mime.go code

This commit is contained in:
古大羊 2024-05-03 22:53:55 +08:00
parent 5b21ad7058
commit ac8faf355a

View File

@ -586,20 +586,20 @@ var types = map[string]string{
".onepkg": "application/onenote", ".onepkg": "application/onenote",
".xpi": "application/x-xpinstall", ".xpi": "application/x-xpinstall",
".wasm": "application/wasm", ".wasm": "application/wasm",
//--- ".m4a": "audio/mp4",
".m4a": "audio/mp4", ".flac": "audio/x-flac",
".flac": "audio/x-flac", ".amr": "audio/amr",
".amr": "audio/amr", ".aac": "audio/aac",
".aac": "audio/aac", ".opus": "video/ogg",
".opus": "video/ogg", ".m4v": "video/mp4",
".m4v": "video/mp4", ".mkv": "video/x-matroska",
".mkv": "video/x-matroska", ".caf": "audio/x-caf",
".caf": "audio/x-caf", ".m3u8": "application/x-mpegURL",
".m3u8": "application/x-mpegURL", ".mpd": "application/dash+xml",
".mpd": "application/dash+xml", ".webp": "image/webp",
".webp": "image/webp",
} }
//nolint:gochecknoinits
func init() { func init() {
for ext, typ := range types { for ext, typ := range types {
// skip errors // skip errors