diff options
author | Bjørn Erik Pedersen <[email protected]> | 2021-03-11 09:18:01 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2021-03-14 15:21:54 +0100 |
commit | ba1d0051b44fdd242b20899e195e37ab26501516 (patch) | |
tree | 646f815cf5eb027bae13e329696acf14d640d3f9 /parser/metadecoders | |
parent | 1b1dcf586e220c3a8ad5ecfa8e4c3dac97f0ab44 (diff) | |
download | hugo-ba1d0051b44fdd242b20899e195e37ab26501516.tar.gz hugo-ba1d0051b44fdd242b20899e195e37ab26501516.zip |
media: Make Type comparable
So we can use it and output.Format as map key etc.
This commit also fixes the media.Type implementation so it does not need to mutate itself to handle different suffixes for the same MIME type, e.g. jpg vs. jpeg.
This means that there are no Suffix or FullSuffix on media.Type anymore.
Fixes #8317
Fixes #8324
Diffstat (limited to 'parser/metadecoders')
-rw-r--r-- | parser/metadecoders/format.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parser/metadecoders/format.go b/parser/metadecoders/format.go index d2b35223d..bba89dbea 100644 --- a/parser/metadecoders/format.go +++ b/parser/metadecoders/format.go @@ -59,7 +59,7 @@ func FormatFromString(formatStr string) Format { // FormatFromMediaType gets the Format given a MIME type, empty string // if unknown. func FormatFromMediaType(m media.Type) Format { - for _, suffix := range m.Suffixes { + for _, suffix := range m.Suffixes() { if f := FormatFromString(suffix); f != "" { return f } |