If we're fetching active gestures via the XInventoryServiceConnector, then properly look at the ITEMS dictionary already returned rather than the level above this.
parent
272cd9886d
commit
12fbfb6125
|
@ -470,7 +470,7 @@ namespace OpenSim.Services.Connectors
|
||||||
|
|
||||||
List<InventoryItemBase> items = new List<InventoryItemBase>();
|
List<InventoryItemBase> items = new List<InventoryItemBase>();
|
||||||
|
|
||||||
foreach (Object o in ret.Values) // getting the values directly, we don't care about the keys item_i
|
foreach (Object o in ((Dictionary<string,object>)ret["ITEMS"]).Values)
|
||||||
items.Add(BuildItem((Dictionary<string, object>)o));
|
items.Add(BuildItem((Dictionary<string, object>)o));
|
||||||
|
|
||||||
return items;
|
return items;
|
||||||
|
|
Loading…
Reference in New Issue