1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-06 22:42:10 +00:00
This commit is contained in:
Louis Vézina 2019-10-31 13:56:25 -04:00
parent 37a23202d7
commit ba51b5bc59

View file

@ -112,7 +112,7 @@ def path_replace_reverse(path):
def path_replace_movie(path):
if path is None or radarr_use_path_mapping is False:
return None
return path
reverted_path = radarr_regex.sub(lambda match: path_mapping_movie[match.group(0)], path, count=1)