diff options
author | Melanie | 2012-09-24 13:41:48 +0200 |
---|---|---|
committer | Melanie | 2012-09-24 13:41:48 +0200 |
commit | 6963b96bd05b17624a2e46726b033e179d50b280 (patch) | |
tree | dbb2c75876bf0bb7d530210dbe2665caae401897 /OpenSim/Region/Framework | |
parent | Change the poll service to use a thread pool for replies to make sure the (diff) | |
download | opensim-SC-6963b96bd05b17624a2e46726b033e179d50b280.zip opensim-SC-6963b96bd05b17624a2e46726b033e179d50b280.tar.gz opensim-SC-6963b96bd05b17624a2e46726b033e179d50b280.tar.bz2 opensim-SC-6963b96bd05b17624a2e46726b033e179d50b280.tar.xz |
If an asset upload transaction doesn't exist for a CreateInventory request,
simply process it as if UUID.Zero had been given.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IAgentAssetTransactions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IAgentAssetTransactions.cs b/OpenSim/Region/Framework/Interfaces/IAgentAssetTransactions.cs index 0cc8fb6..e0aad2b 100644 --- a/OpenSim/Region/Framework/Interfaces/IAgentAssetTransactions.cs +++ b/OpenSim/Region/Framework/Interfaces/IAgentAssetTransactions.cs | |||
@@ -36,7 +36,7 @@ namespace OpenSim.Region.Framework.Interfaces | |||
36 | void HandleItemUpdateFromTransaction(IClientAPI remoteClient, UUID transactionID, | 36 | void HandleItemUpdateFromTransaction(IClientAPI remoteClient, UUID transactionID, |
37 | InventoryItemBase item); | 37 | InventoryItemBase item); |
38 | 38 | ||
39 | void HandleItemCreationFromTransaction(IClientAPI remoteClient, UUID transactionID, UUID folderID, | 39 | bool HandleItemCreationFromTransaction(IClientAPI remoteClient, UUID transactionID, UUID folderID, |
40 | uint callbackID, string description, string name, sbyte invType, | 40 | uint callbackID, string description, string name, sbyte invType, |
41 | sbyte type, byte wearableType, uint nextOwnerMask); | 41 | sbyte type, byte wearableType, uint nextOwnerMask); |
42 | 42 | ||