Merge pull request #1584 from ivandrofly/bf1

[bugfix] - fix bug while parsing UnknownSubtitle81.cs
This commit is contained in:
Nikolaj Olsson 2016-02-23 08:04:19 +01:00
commit 48ac077c97

View File

@ -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)
{