mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
* Patch from Justincc that swaps out LLUUIDs for Guid on the inventory REST calls
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user