mirror of https://github.com/morpheus65535/bazarr
Fix for unicode error while guessing external subtitles without language code.
This commit is contained in:
parent
78c3a94677
commit
4260d8ddfe
|
@ -366,7 +366,7 @@ def guess_external_subtitles(dest_folder, subtitles):
|
|||
subtitle_path)
|
||||
continue
|
||||
detected_language = None
|
||||
with open(subtitle_path, 'r') as f:
|
||||
with open(subtitle_path, 'r', errors='ignore') as f:
|
||||
text = f.read()
|
||||
try:
|
||||
encoding = UnicodeDammit(text)
|
||||
|
|
Loading…
Reference in New Issue