2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-06-17 05:52:11 +00:00

fix: normalizing asset names trims whitespace (#825)

This commit is contained in:
Jan
2026-06-07 13:31:33 +02:00
committed by GitHub
parent ab7d8f5670
commit 04628fc52c
+1
View File
@@ -108,6 +108,7 @@ std::string XAssetInfoGeneric::NormalizeAssetName(std::string input)
utils::MakeStringLowerCase(input);
std::ranges::replace(input, '\\', '/');
utils::StringTrim(input);
return input;
}