diff --git a/bazarr/helper.py b/bazarr/helper.py index e4ba127ad..a16645127 100644 --- a/bazarr/helper.py +++ b/bazarr/helper.py @@ -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)