You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe The Bug
I use the webOS Jellyfin client on my LG TV.
When I open the the app, all images are blurred.
After reconnecting to the server (profile -> change server -> connect) the images are loaded correctly.
After turning off the TV and turning it on again, the images stay blurred again.
My nginx proxy server shows the following requests for the images: /Items/8db0/Images/Primary?fillHeight=Infinity&fillWidth=Infinity&quality=96&tag=bea50 (I shortened the hashes)
The response is as follows:
{
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "One or more validation errors occurred.",
"status":400,
"errors": {
"fillWidth": ["The value \u0027Infinity\u0027 is not valid."],
"fillHeight": ["The value \u0027Infinity\u0027 is not valid."]
},
"traceId": "00-b268cbb3a4e5f45a30e9f50e4c9c572d-b5103b9c688405f0-00"
}
This issue only occurs on the webOS client. All other clients work fine.
Steps To Reproduce
Turn off the TV '...'
Turn on the TV and start the Jellyfin app '....'
All images are blurred
Expected Behavior
All images are loaded correctly.
Workaround
Reconnecting to the server fixes the issue until the TV is turned off and on again.
Another workaround that works for me is to remove the invalid URL parameters in the Nginx proxy server before passing it to Jellyfin.
location /Items {
if ($args ~* (.*)(fillHeight=Infinity&fillWidth=Infinity&?)(.*)) {
set $args $1$3;
}
}
Describe The Bug
I use the webOS Jellyfin client on my LG TV.
When I open the the app, all images are blurred.
After reconnecting to the server (profile -> change server -> connect) the images are loaded correctly.
After turning off the TV and turning it on again, the images stay blurred again.
My nginx proxy server shows the following requests for the images:
/Items/8db0/Images/Primary?fillHeight=Infinity&fillWidth=Infinity&quality=96&tag=bea50
(I shortened the hashes)The response is as follows:
This issue only occurs on the webOS client. All other clients work fine.
Steps To Reproduce
Expected Behavior
All images are loaded correctly.
Workaround
Reconnecting to the server fixes the issue until the TV is turned off and on again.
Another workaround that works for me is to remove the invalid URL parameters in the Nginx proxy server before passing it to Jellyfin.
Logs
/Items/xyz/Images/Primary?fillHeight=Infinity&fillWidth=Infinity
System (please complete the following information):
The text was updated successfully, but these errors were encountered: