Skip to content

Commit

Permalink
Fixed subtitles deletion after blacklisting.
Browse files Browse the repository at this point in the history
  • Loading branch information
morpheus65535 committed Apr 1, 2021
1 parent 4bc379f commit 986912b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bazarr/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ def post(self):
language=alpha3_from_alpha2(language),
forced=False,
hi=False,
media_path=media_path,
media_path=path_mappings.path_replace(media_path),
subtitles_path=subtitles_path,
sonarr_series_id=sonarr_series_id,
sonarr_episode_id=sonarr_episode_id)
Expand Down Expand Up @@ -1620,7 +1620,7 @@ def post(self):
language=alpha3_from_alpha2(language),
forced=forced,
hi=hi,
media_path=media_path,
media_path=path_mappings.path_replace_movie(media_path),
subtitles_path=subtitles_path,
radarr_id=radarr_id)
movies_download_subtitles(radarr_id)
Expand Down

0 comments on commit 986912b

Please sign in to comment.