mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove leading spaces in TRANS.TBL new name.
This commit is contained in:
@@ -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))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user