mirror of
https://github.com/morpheus65535/bazarr
synced 2025-01-03 05:25:28 +00:00
Fixed corrupted hi value in languages profile after reverting back Non-HI only feature.
This commit is contained in:
parent
5ad3926306
commit
1f843c7d15
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ def upgrade_languages_profile_hi_values():
|
|||
for language in items:
|
||||
if language['hi'] == "only":
|
||||
language['hi'] = "True"
|
||||
elif language['hi'] == "also":
|
||||
elif language['hi'] in ["also", "never"]:
|
||||
language['hi'] = "False"
|
||||
database.execute(
|
||||
update(TableLanguagesProfiles)
|
||||
|
|
Loading…
Reference in a new issue