mirror of https://github.com/morpheus65535/bazarr
Fixed big loop from subzero modification module
Co-authored-by: vitiko98
This commit is contained in:
parent
a20e570de1
commit
56958488b6
|
@ -275,8 +275,13 @@ class SubtitleModifications(object):
|
|||
logger.debug(u"Skipping empty line: %s", index)
|
||||
continue
|
||||
|
||||
line_split = t.split(r"\N")
|
||||
if len(line_split) > 3: # Badly parsed subtitle
|
||||
logger.error("Skipping %d lines for %s mod", len(line_split), mods)
|
||||
continue
|
||||
|
||||
skip_entry = False
|
||||
for line in t.split(r"\N"):
|
||||
for line in line_split:
|
||||
# don't bother the mods with surrounding tags
|
||||
old_line = line
|
||||
line = line.strip()
|
||||
|
|
Loading…
Reference in New Issue