Fixed some edge case where no media could be found in db with a specific path. #2003

This commit is contained in:
morpheus65535 2022-12-05 09:58:22 -05:00
parent 01557cbfbf
commit e6cab17a29
1 changed files with 4 additions and 1 deletions

View File

@ -174,7 +174,10 @@ def check_missing_languages(path, media_type):
.get_or_none()
if not confirmed_missing_subs:
return None
reversed_path = path_mappings.path_replace_reverse(path) if media_type == 'series' else \
path_mappings.path_replace_reverse_movie(path)
logging.debug(f"BAZARR no media with this path have been found in database: {reversed_path}")
return []
languages = []
for language in ast.literal_eval(confirmed_missing_subs['missing_subtitles']):