Descriptions might have forward slashes that AREN'T folder markers. Replace them with underscores.

This commit is contained in:
Matt Nadareski
2016-05-18 17:10:20 -07:00
parent 600ec5b4fc
commit 780c9a6ab8

View File

@@ -256,6 +256,7 @@ namespace SabreTools.Helper
if (temptype == "software" && subreader.ReadToFollowing("description")) if (temptype == "software" && subreader.ReadToFollowing("description"))
{ {
tempname = subreader.ReadElementContentAsString(); tempname = subreader.ReadElementContentAsString();
tempname = tempname.Replace('/', '_');
} }
else else
{ {