* Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST calls

This commit is contained in:
Teravus Ovares
2007-12-14 07:55:33 +00:00
parent c65b2a38d8
commit 79935881aa
7 changed files with 31 additions and 21 deletions

View File

@@ -65,8 +65,8 @@ namespace OpenSim.Region.Communications.OGS1
{
RestObjectPosterResponse<InventoryCollection> requester = new RestObjectPosterResponse<InventoryCollection>();
requester.ResponseCallback = InventoryResponse;
// THIS SHOULD BE A Guid, NOT A LLUUID! No longer Serializable! This will fail EVERY TIME.
requester.BeginPostObject<LLUUID>(_inventoryServerUrl + "/GetInventory/", userID);
requester.BeginPostObject<Guid>(_inventoryServerUrl + "/GetInventory/", userID.UUID);
}
catch (Exception)
{
@@ -169,4 +169,4 @@ namespace OpenSim.Region.Communications.OGS1
}
}
}
}
}