From 79935881aa4ac16990625360b256aa5eebe12ce7 Mon Sep 17 00:00:00 2001 From: Teravus Ovares Date: Fri, 14 Dec 2007 07:55:33 +0000 Subject: * Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST calls --- OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1') diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index 6edb149..5342127 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs @@ -65,8 +65,8 @@ namespace OpenSim.Region.Communications.OGS1 { RestObjectPosterResponse requester = new RestObjectPosterResponse(); requester.ResponseCallback = InventoryResponse; - // THIS SHOULD BE A Guid, NOT A LLUUID! No longer Serializable! This will fail EVERY TIME. - requester.BeginPostObject(_inventoryServerUrl + "/GetInventory/", userID); + + requester.BeginPostObject(_inventoryServerUrl + "/GetInventory/", userID.UUID); } catch (Exception) { @@ -169,4 +169,4 @@ namespace OpenSim.Region.Communications.OGS1 } } } -} \ No newline at end of file +} -- cgit v1.1