mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 08:13:14 +00:00
Fixed upgrade of non-existant subtitles files
This commit is contained in:
parent
b7e4880918
commit
ac6dddd607
1 changed files with 3 additions and 0 deletions
|
@ -138,6 +138,9 @@ def parse_upgradable_list(upgradable_list, perfect_score, media_type):
|
|||
for item in upgradable_list:
|
||||
logging.debug(f"Trying to validate eligibility to upgrade for this subtitles: "
|
||||
f"{item['subtitles_path']}")
|
||||
if not os.path.exists(path_replace_method(item['subtitles_path'])):
|
||||
logging.debug("Subtitles file doesn't exists anymore, we skip this one.")
|
||||
continue
|
||||
if (item['video_path'], item['language']) in \
|
||||
[(x['video_path'], x['language']) for x in items_to_upgrade]:
|
||||
logging.debug("Newer video path and subtitles language combination already in list of subtitles to "
|
||||
|
|
Loading…
Reference in a new issue