#jira UE-88893

The problem was a post process of the meta data to remove unprintable characteres. Process that removed the end character from the string...
So configurations of the parts became different for each instance of part...
#rb johan.duparc

[CL 11519600 by David Lesage in 4.25 branch]
This commit is contained in:
David Lesage
2020-02-18 16:34:14 -05:00
parent 40aab30f39
commit 919c80b62e
@@ -47,7 +47,7 @@ void FDatasmithUtils::SanitizeNameInplace(FString& InString)
void FDatasmithUtils::SanitizeStringInplace(FString& InString)
{
for (TCHAR& Char : InString.GetCharArray())
for (TCHAR& Char : InString)
{
if (!FChar::IsPrint(Char) && !FChar::IsWhitespace(Char))
{