mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 04:33:04 +01:00
Minor fix for Nuendo csv with line start-/end-ing w quotes
This commit is contained in:
parent
0732cc04c4
commit
ae87e609c4
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user