mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 13:12:39 +01:00
[bugfix] - fix bug while parsing UnknownSubtitle81.cs
This commit is contained in:
parent
a18eaf9cb8
commit
9dc4a1dbcf
@ -107,7 +107,7 @@ WB,GDMX,1:33,4x3
|
||||
foreach (var line in lines)
|
||||
{
|
||||
string s = line.Trim();
|
||||
if (s.Length >= 39 && s.Length <= 47 && RegexTimeCodes.IsMatch(s))
|
||||
if (s.Length >= 38 && s.Length <= 47 && RegexTimeCodes.IsMatch(s))
|
||||
{
|
||||
if (p != null)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user