Hey, another small bug to report.
Some files with a typographic apostrophe (', U+2019) in their filename fail with this error:
UnicodeEncodeError: 'latin-1' codec can't encode character '\u2019' in position 56: ordinal not in range(256)
Example filename: SEO - 3.3 - Les bases techniques d'écriture.mp4
Accented characters seem to be handled fine, so it looks like the issue is specifically with the curly apostrophe (') as opposed to the straight one ('). Somewhere in the code a string is being encoded as latin-1 instead of utf-8.
Hey, another small bug to report.
Some files with a typographic apostrophe (
', U+2019) in their filename fail with this error:Example filename:
SEO - 3.3 - Les bases techniques d'écriture.mp4Accented characters seem to be handled fine, so it looks like the issue is specifically with the curly apostrophe (
') as opposed to the straight one ('). Somewhere in the code a string is being encoded as latin-1 instead of utf-8.