Fix for format UnknownSubtitle60

This commit is contained in:
Nikolaj Olsson 2014-09-29 17:04:11 +02:00
parent bcee625b9c
commit 9cc4f3c73a

View File

@ -84,7 +84,11 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
if (match.Success && s.Length == 11)
{
if (p.StartTime.TotalMilliseconds > 0)
{
subtitle.Paragraphs.Add(p);
if (string.IsNullOrEmpty(p.Text))
_errorCount++;
}
p = new Paragraph();
string[] parts = s.Split(':');