From 20fa5d3146788dc57ad326e1eb2dc31d066c6c82 Mon Sep 17 00:00:00 2001 From: Colin Alexander Duffy <63363428+AngelaDMerkel@users.noreply.github.com> Date: Thu, 6 Nov 2025 02:09:40 -0500 Subject: [PATCH] Add JXL (#6184) --- pkg/file/image/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/file/image/scan.go b/pkg/file/image/scan.go index a1d63f649..635f421e4 100644 --- a/pkg/file/image/scan.go +++ b/pkg/file/image/scan.go @@ -50,7 +50,7 @@ func (d *Decorator) Decorate(ctx context.Context, fs models.FS, f models.File) ( isClip := true // This list is derived from ffmpegImageThumbnail in pkg/image/thumbnail. If one gets updated, the other should be as well - for _, item := range []string{"png", "mjpeg", "webp", "bmp"} { + for _, item := range []string{"png", "mjpeg", "webp", "bmp", "jpegxl"} { if item == probe.VideoCodec { isClip = false }