diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Connectors/Inventory/XInventoryServicesConnector.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/XInventoryServicesConnector.cs b/OpenSim/Services/Connectors/Inventory/XInventoryServicesConnector.cs index 9d96703..fe7a799 100644 --- a/OpenSim/Services/Connectors/Inventory/XInventoryServicesConnector.cs +++ b/OpenSim/Services/Connectors/Inventory/XInventoryServicesConnector.cs | |||
@@ -474,7 +474,7 @@ namespace OpenSim.Services.Connectors | |||
474 | 474 | ||
475 | List<InventoryItemBase> items = new List<InventoryItemBase>(); | 475 | List<InventoryItemBase> items = new List<InventoryItemBase>(); |
476 | 476 | ||
477 | foreach (Object o in ret.Values) // getting the values directly, we don't care about the keys item_i | 477 | foreach (Object o in ((Dictionary<string,object>)ret["ITEMS"]).Values) |
478 | items.Add(BuildItem((Dictionary<string, object>)o)); | 478 | items.Add(BuildItem((Dictionary<string, object>)o)); |
479 | 479 | ||
480 | return items; | 480 | return items; |