mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-21 23:32:31 +00:00
Avoid FileNotFoundError indexing subtitles
This commit is contained in:
parent
e3cda5c11e
commit
5efc838749
1 changed files with 2 additions and 2 deletions
|
@ -872,14 +872,14 @@ def _search_external_subtitles(path, languages=None, only_one=False, match_stric
|
|||
dirpath, filename = os.path.split(path)
|
||||
dirpath = dirpath or '.'
|
||||
fn_no_ext, fileext = os.path.splitext(filename)
|
||||
fn_no_ext_lower = unicodedata.normalize('NFC', fn_no_ext.lower())
|
||||
fn_no_ext_lower = fn_no_ext.lower() # unicodedata.normalize('NFC', fn_no_ext.lower())
|
||||
subtitles = {}
|
||||
|
||||
for entry in scandir(dirpath):
|
||||
if not entry.is_file(follow_symlinks=False):
|
||||
continue
|
||||
|
||||
p = unicodedata.normalize('NFC', entry.name)
|
||||
p = entry.name # unicodedata.normalize('NFC', entry.name)
|
||||
|
||||
# keep only valid subtitle filenames
|
||||
if not p.lower().endswith(SUBTITLE_EXTENSIONS):
|
||||
|
|
Loading…
Reference in a new issue