Jellyfin Forum
Prefer embedded episode information over filenames - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: Prefer embedded episode information over filenames (/t-prefer-embedded-episode-information-over-filenames)



Prefer embedded episode information over filenames - Samuli Valavuo - 2024-09-19

My problem is that my setup (docker upgraded from earlier for a while now) doesn't save setting "Prefer embedded episode information over filenames". I can select it, but when I go to Library settings again, it is unselected. This is annoying and makes my show episodes descriptions show up in wrong language.
Is there a way to get it stay enabled?

Server version
10.9.11
Web version
10.9.11
Build version
10.9.11


RE: Prefer embedded episode information over filenames - TheDreadPirate - 2024-09-19

Just asking to verify, you scrolled down and clicked save? If so, could you open your browser's developer console and check if there are any browser errors when you do click save? I've seen this before where certain menus are broken for some reason.

If this is the case, you could try recreating the container to ensure that the volatile portion of your docker setup doesn't have some sort of corrupt jellyfin-web.

Code:
docker compose down jellyfin
docker compose up -d jellyfin --force-recreate

On my system --force-recreate hasn't worked recently. If that is the case for you (jellyfin just starts without re-pulling the image) you can use this command to prune old images and VFS's.

Code:
docker compose down jellyfin
docker system prune -a
docker compose up -d jellyfin



RE: Prefer embedded episode information over filenames - Samuli Valavuo - 2024-09-20

Hi!
Thanks for your reply!

Well, actually my installation is from Asustor AppCentral. Jellyfin is running in my NAS -system. I have done also updating/upgradin via portainer on the same system. Everything else seems to work, but that one checkbox won't save state I put it in.
There is no save button, but ok -button at the end of library configuration page. And pressing that seems to save everything else but that precise setting. :-(
There is no errors on Web Developer console. I'm quite baffled.

- Samuli