2024-05-31, 06:51 AM
(2024-05-30, 11:48 PM)pcm Wrote: That's it! It was the '–' in the file names instead of the '-' that was causing this problem. Thanks a lot!
In case anyone else is facing this problem. Here's a quick oneliner linux CLI that I came up with to fix all unicode hyphens to standard (ascii) hyphens in all files and dirs.
Code:find . -name "*–*" -print | while IFS= read -r f ; do mv -v "$f" "`echo \"$f\" | sed 's/–/-/g'`" ; done
Hi, if those special characters are an issue, you probably have a wrong setting. Because with a correct installation they don't make problems.
You should check if you have a wrong env setting for 10.9.x (DOTNET_SYSTEM_GLOBALIZATION_INVARIANT set to true or 1). And if so, delete it.
https://github.com/jellyfin/jellyfin/iss...2105568202
Don't try to delete this variable with portainer if you're using synology docker (Container Manager), because it might reset the value. Took me a while to realize this. In Container Manager deleting the variable worked. https://github.com/portainer/portainer/issues/5813