Wenn ich meine Alben einlese, werden bei Alben mit Umlauten in der Ordnerstruktur keine Albencover (cover.jpg befindet sich im Ordner) angezeigt. Bei denen ohne Umlauten funktioniert es. Bis vor kurzem hatte ich einen Windows Server als PMS jetzt bin ich auf Linux umgeschwenkt.
Auf dem Windows Server trat das Problem nicht auf. Vermutlich irgend ein Kodierungsproblem, was entweder durch eine Einstellung behoben werden kann oder mit der Linux-Variante von Plex zusammenhängt. Weiß jemand mehr dazu?
Linux: Ubuntu 23.04 lunar
PMS: Version 1.32.6.7468
Solution:
- Confirm the character encoding is not set correctly. Run:
locale
and under “LANG” you will seeLANG=C
.- Generate the proper locale for your language/region by editing
/etc/locale.gen
and uncommenting the one you want to use. Mine is “en_US.UTF-8” Save & close.- Generate the locale from #2 by running:
locale-gen
- Edit the system locale file to select the locale you just generated:
/etc/default/locale
. For me it looked like this:LANG=en_US.UTF-8
. Just that one line. Delete or comment out whatever else was in there.- Save, close, reboot. Problem solved!