From 9d7ba34edc6d4c05a5af72bea1604ba4d310650f Mon Sep 17 00:00:00 2001 From: Regalia <126194895+regalialong@users.noreply.github.com> Date: Sun, 9 Feb 2025 18:20:43 +0000 Subject: [PATCH] Fix GetAssetVersion only working intermittently on Linux (#1130) --- Dotnet/AssetBundleManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dotnet/AssetBundleManager.cs b/Dotnet/AssetBundleManager.cs index 49c0b598..ef81ae4b 100644 --- a/Dotnet/AssetBundleManager.cs +++ b/Dotnet/AssetBundleManager.cs @@ -54,7 +54,7 @@ namespace VRCX versionHex += b.ToString("X2"); } - return versionHex.PadLeft(32, '0'); + return versionHex.PadLeft(32, '0').ToLowerInvariant(); } public (int, int) ReverseHexToDecimal(string hexString) @@ -249,4 +249,4 @@ namespace VRCX return size; } } -} \ No newline at end of file +}