mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-24 06:37:16 -04:00
Mods/Fix Uppercase: Fix broken uppercase detection in certain cases (#2852)
When a stripped entry of a subtitle is empty, the whole subtitle is considered uppercased and is fixed erroneously, if the modification is enabled (oversight from previous commit on this mod; we break the for loop instead of continuing)
This commit is contained in:
parent
8ff5d5838a
commit
b38f1df99c
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ class SubtitleModifications(object):
|
|||
entry_used = True
|
||||
else:
|
||||
# skip full entry
|
||||
break
|
||||
continue
|
||||
|
||||
if entry_used:
|
||||
entries_used += 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue