Add comment describing jellyfin image tag invalidation

This commit is contained in:
Kendall Garner 2025-09-24 08:12:00 -07:00
parent 2feef206fb
commit f4be797f16
No known key found for this signature in database
GPG key ID: 9355F387FE765C94

View file

@ -89,6 +89,8 @@ const getSongCoverArtUrl = (args: {
'/Images/Primary' +
`?width=${size}` +
'&quality=96' +
// Invalidate the cache if the image chances. This appears to be
// how Jellyfin Web does it as well
`&tag=${args.item.ImageTags.Primary}`
);
}