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)
development v1.5.2-beta.18
pannal 3 days ago committed by GitHub
parent 8ff5d5838a
commit b38f1df99c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -199,7 +199,7 @@ class SubtitleModifications(object):
entry_used = True
else:
# skip full entry
break
continue
if entry_used:
entries_used += 1

Loading…
Cancel
Save