diff --git a/Programs/examples/TestClient/Commands/Inventory/DownloadCommand.cs b/Programs/examples/TestClient/Commands/Inventory/DownloadCommand.cs index 9ee4a558..52ea5a8c 100644 --- a/Programs/examples/TestClient/Commands/Inventory/DownloadCommand.cs +++ b/Programs/examples/TestClient/Commands/Inventory/DownloadCommand.cs @@ -35,7 +35,7 @@ namespace OpenMetaverse.TestClient return usage; try { - assetType = (AssetType)Enum.Parse(typeof(AssetType), args[1], ignoreCase: true); + assetType = (AssetType)Enum.Parse(typeof(AssetType), args[1], true); } catch (ArgumentException) { return usage; }