Minor fix for Nuendo csv with line start-/end-ing w quotes

This commit is contained in:
niksedk 2023-01-22 18:53:51 +01:00
parent 0732cc04c4
commit ae87e609c4

View File

@ -60,10 +60,10 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{
try
{
var actor = Utilities.FixQuotes(parts[0]);
var actor = parts[0];
var start = DecodeTime(parts[1]);
var end = DecodeTime(parts[2]);
var text = Utilities.FixQuotes(parts[3]);
var text = parts[3];
p = new Paragraph(start, end, text);
if (!string.IsNullOrEmpty(actor))
{