mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-02-25 15:25:57 +08:00
Merge branch 'development' into python3
# Conflicts: # bazarr/main.py
This commit is contained in:
commit
90e9786546
1 changed files with 4 additions and 1 deletions
|
@ -614,7 +614,10 @@ def _search_external_subtitles(path, languages=None, only_one=False, scandir_gen
|
|||
forced = "forced" in adv_tag
|
||||
|
||||
# extract the potential language code
|
||||
language_code = p_root.rsplit(".", 1)[1].replace('_', '-')
|
||||
try:
|
||||
language_code = p_root.rsplit(".", 1)[1].replace('_', '-')
|
||||
except IndexError:
|
||||
language_code = None
|
||||
|
||||
# remove possible language code for matching
|
||||
p_root_bare = ENDSWITH_LANGUAGECODE_RE.sub("", p_root)
|
||||
|
|
Loading…
Reference in a new issue