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
Strings are not sanitized in the directory path. For example, if you wanted to store TV shows in {series}{series} - S{season}E{episode} format, a colon in {series} will be removed in the filename but not in the directory structure. I tracked this down to str_sanitize being called on the filename but not on the dir_tail in the destination() method in target.py
My clumsy hack of a fix was simply to split the dir_tail into individual directory names and call str_sanitize on them, e.g.
Strings are not sanitized in the directory path. For example, if you wanted to store TV shows in {series}{series} - S{season}E{episode} format, a colon in {series} will be removed in the filename but not in the directory structure. I tracked this down to str_sanitize being called on the filename but not on the dir_tail in the destination() method in target.py
My clumsy hack of a fix was simply to split the dir_tail into individual directory names and call str_sanitize on them, e.g.
which I added to target.py on line 110 (after the call to sanitize the filename).
The text was updated successfully, but these errors were encountered: