diff --git a/src/Logic/SubtitleFormats/Csv.cs b/src/Logic/SubtitleFormats/Csv.cs index c1dd801e9..9fc90c0b6 100644 --- a/src/Logic/SubtitleFormats/Csv.cs +++ b/src/Logic/SubtitleFormats/Csv.cs @@ -70,7 +70,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats string text = Utilities.FixQuotes(parts[3]); p = new Paragraph(text, start, end); subtitle.Paragraphs.Add(p); - continuation = text.StartsWith("\"") && !text.EndsWith("\""); + continuation = parts[3].StartsWith("\"") && !parts[3].EndsWith("\""); } catch {