From ba51b5bc59bc9d5bdd6b1c8bb3e9809cec58eafd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Thu, 31 Oct 2019 13:56:25 -0400 Subject: [PATCH] WIP --- bazarr/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)