Remove leading spaces in TRANS.TBL new name.

This commit is contained in:
2019-07-31 15:49:07 +01:00
parent 4616f59a6b
commit 3a7f95f3e4

View File

@@ -363,7 +363,7 @@ namespace DiscImageChef.Filesystems.ISO9660
int spaceIndex = cutLine.IndexOf(' ');
string originalName = cutLine.Substring(0, spaceIndex);
string originalNameWithVersion;
string newName = cutLine.Substring(spaceIndex + 1);
string newName = cutLine.Substring(spaceIndex + 1).TrimStart();
if(originalName.EndsWith(";1", StringComparison.Ordinal))
{