mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 05:51:10 +00:00
Fixed hearing-impaired not taken into account when naming uploaded subtitles #1846
This commit is contained in:
parent
f3287561e5
commit
2a298860a4
1 changed files with 3 additions and 0 deletions
|
@ -43,6 +43,9 @@ def manual_upload_subtitle(path, language, forced, hi, title, scene_name, media_
|
|||
else:
|
||||
lang_obj = custom.subzero_language()
|
||||
|
||||
if hi:
|
||||
lang_obj = Language.rebuild(lang_obj, hi=True)
|
||||
|
||||
if forced:
|
||||
lang_obj = Language.rebuild(lang_obj, forced=True)
|
||||
|
||||
|
|
Loading…
Reference in a new issue