Skip to content

Commit

Permalink
Fixed corrupted hi value in languages profile after reverting back No…
Browse files Browse the repository at this point in the history
…n-HI only feature.
  • Loading branch information
morpheus65535 committed Jun 16, 2024
1 parent 5ad3926 commit 1f843c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/app/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 1f843c7

Please sign in to comment.