If the uuid gatherer fails to find the asset containing gesture metadata, then simply return rather than generating an exception

This matches existing behaviour, though better diagnostics for missing assets may be good later on.
This addresses http://opensimulator.org/mantis/view.php?id=4977
viewer-2-initial-appearance
Justin Clark-Casey (justincc) 2010-09-24 23:58:37 +01:00
parent 51207c24a0
commit 5bcf9ae2f9
1 changed files with 7 additions and 0 deletions

View File

@ -291,9 +291,16 @@ namespace OpenSim.Region.Framework.Scenes
}
}
/// <summary>
/// Get the asset uuid associated with a gesture
/// </summary>
/// <param name="gestureUuid"></param>
/// <param name="assetUuids"></param>
protected void GetGestureAssetUuids(UUID gestureUuid, IDictionary<UUID, AssetType> assetUuids)
{
AssetBase assetBase = GetAsset(gestureUuid);
if (null == assetBase)
return;
MemoryStream ms = new MemoryStream(assetBase.Data);
StreamReader sr = new StreamReader(ms);