Easy returns

This commit is contained in:
Cinder Roxley
2024-07-01 12:17:07 -05:00
parent 9df9e2d0ba
commit 6ee065573e
19 changed files with 41 additions and 168 deletions

View File

@@ -46,10 +46,8 @@ namespace OpenMetaverse.TestClient
if (DownloadHandle.WaitOne(120 * 1000, false))
{
if (Success)
return $"Saved {AssetID}.{assetType.ToString().ToLower()}";
else
return $"Failed to download asset {AssetID}, perhaps {assetType} is the incorrect asset type?";
return Success ? $"Saved {AssetID}.{assetType.ToString().ToLower()}"
: $"Failed to download asset {AssetID}, perhaps {assetType} is the incorrect asset type?";
}
else
{