From 04628fc52cc7f790ae8632a8160a9e70c52ae09c Mon Sep 17 00:00:00 2001 From: Jan Date: Sun, 7 Jun 2026 13:31:33 +0200 Subject: [PATCH] fix: normalizing asset names trims whitespace (#825) --- src/ZoneCommon/Pool/XAssetInfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ZoneCommon/Pool/XAssetInfo.cpp b/src/ZoneCommon/Pool/XAssetInfo.cpp index 7ed5213e..a4e4402a 100644 --- a/src/ZoneCommon/Pool/XAssetInfo.cpp +++ b/src/ZoneCommon/Pool/XAssetInfo.cpp @@ -108,6 +108,7 @@ std::string XAssetInfoGeneric::NormalizeAssetName(std::string input) utils::MakeStringLowerCase(input); std::ranges::replace(input, '\\', '/'); + utils::StringTrim(input); return input; }