Do not trim space in SeJsonParser

This commit is contained in:
Nikolaj Olsson 2024-11-29 13:52:56 +01:00
parent 9f56f74805
commit b4b18e75d4

View File

@ -1,5 +1,4 @@
using Nikse.SubtitleEdit.Core.ContainerFormats.Ebml;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Text;
namespace Nikse.SubtitleEdit.Core.Common
@ -153,7 +152,7 @@ namespace Nikse.SubtitleEdit.Core.Common
return list;
}
}
var objectValue = content.Substring(i, end - i).Trim();
var objectValue = content.Substring(i, end - i);
if (objectName == name)
{
list.Add(objectValue);
@ -471,7 +470,7 @@ namespace Nikse.SubtitleEdit.Core.Common
return list;
}
}
var objectValue = content.Substring(i, end - i).Trim();
var objectValue = content.Substring(i, end - i);
if (objectName == name)
{
list.Add(objectValue);