mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #9071] Fix client supported image formats #11966
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/jellyfin/jellyfin/pull/9071
State: closed
Merged: Yes
I recently noticed on the Android TV app that logos for TV shows with transparent backgrounds now had black backgrounds instead. I traced this to
GetClientSupportedFormatsshort circuiting if the Accept header was missing.These changes remove the short-circuit so that at least the jpg and png formats get added by default. Some code is adjusted so that it handles a missing Accept header.