From c1a22889c7947d89c0dd55a4ccb8ac1ae6a4d52c Mon Sep 17 00:00:00 2001 From: Deluan Date: Thu, 23 Jul 2026 20:19:43 -0400 Subject: [PATCH] fix(jellyfin): trim primaryImageTag comment to why-only, within budget --- server/jellyfin/dto/mappers.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server/jellyfin/dto/mappers.go b/server/jellyfin/dto/mappers.go index 16f201790..dac1c1953 100644 --- a/server/jellyfin/dto/mappers.go +++ b/server/jellyfin/dto/mappers.go @@ -200,9 +200,8 @@ func SongToBaseItem(mf model.MediaFile, fields Fields) BaseItemDto { return item } -// primaryImageTag returns the image cache tag plus the real-blurhash map; absent art yields ("", nil), -// and unresolved art falls back to the id. A blurhash is never synthesized: Finamp keys its cover cache -// on the value, so a fake one pins a stale cover forever (#5798). +// primaryImageTag never synthesizes a blurhash: Finamp keys its cover cache on the value, +// so a fake one pins a stale cover forever (#5798). func primaryImageTag(img model.ItemImage, fallback string) (string, map[string]map[string]string) { if img.ImageAbsent { return "", nil