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:
pannal 2025-02-19 12:13:49 +01:00 committed by GitHub
parent 8ff5d5838a
commit b38f1df99c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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