aboutsummaryrefslogtreecommitdiffhomepage
path: root/resources/images
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <[email protected]>2021-03-11 09:18:01 +0100
committerBjørn Erik Pedersen <[email protected]>2021-03-14 15:21:54 +0100
commitba1d0051b44fdd242b20899e195e37ab26501516 (patch)
tree646f815cf5eb027bae13e329696acf14d640d3f9 /resources/images
parent1b1dcf586e220c3a8ad5ecfa8e4c3dac97f0ab44 (diff)
downloadhugo-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 'resources/images')
-rw-r--r--resources/images/image.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/images/image.go b/resources/images/image.go
index 3d28263c0..b71321244 100644
--- a/resources/images/image.go
+++ b/resources/images/image.go
@@ -265,7 +265,7 @@ func (f Format) SupportsTransparency() bool {
// DefaultExtension returns the default file extension of this format, starting with a dot.
// For example: .jpg for JPEG
func (f Format) DefaultExtension() string {
- return f.MediaType().FullSuffix()
+ return f.MediaType().FirstSuffix.FullSuffix
}
// MediaType returns the media type of this image, e.g. image/jpeg for JPEG