diff options
author | Justin Clarke Casey | 2008-04-14 18:43:23 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-14 18:43:23 +0000 |
commit | b7ae8701ce6881991fbacf28cdbb0d09f220f6ec (patch) | |
tree | 39247c37f31b9ad774a47e660eb9d314ef4c4582 /OpenSim/Region/Environment/Scenes/Scene.cs | |
parent | * Fixed a few warnings. (diff) | |
download | opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.zip opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.gz opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.bz2 opensim-SC_OLD-b7ae8701ce6881991fbacf28cdbb0d09f220f6ec.tar.xz |
* Working towards notifying the client if the inventory service has failed, rather than simply returning 0 items.
* This is very early support which would only be triggered in a rather unlikely case (if the user server correctly received an inventory skeleton, but later on failed to return the whole inventory in a timely manner. Also, this only applies to the 1.19.1.4 client onwards
* Code cleanup and support for other failure cases (failure of inventory caching on region crossing, failure to actually add a folder/item, etc, should follow.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Scene.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.cs b/OpenSim/Region/Environment/Scenes/Scene.cs index 410120f..b93367c 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.cs | |||
@@ -1884,7 +1884,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
1884 | cap.ItemUpdatedCall = CapsUpdateInventoryItemAsset; | 1884 | cap.ItemUpdatedCall = CapsUpdateInventoryItemAsset; |
1885 | cap.TaskScriptUpdatedCall = CapsUpdateTaskInventoryScriptAsset; | 1885 | cap.TaskScriptUpdatedCall = CapsUpdateTaskInventoryScriptAsset; |
1886 | cap.CAPSFetchInventoryDescendents = CommsManager.UserProfileCacheService.HandleFetchInventoryDescendentsCAPS; | 1886 | cap.CAPSFetchInventoryDescendents = CommsManager.UserProfileCacheService.HandleFetchInventoryDescendentsCAPS; |
1887 | 1887 | cap.GetClient = m_innerScene.GetControllingClient; | |
1888 | m_capsHandlers[agentId] = cap; | 1888 | m_capsHandlers[agentId] = cap; |
1889 | } | 1889 | } |
1890 | 1890 | ||