diff options
author | Justin Clark-Casey (justincc) | 2012-10-06 02:34:49 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-06 02:34:49 +0100 |
commit | 16c9c1dff7bbf299efddd44e4f9aeeb7db38fff6 (patch) | |
tree | affb51dd09432b08673ec0201f24f87e9f61797e /OpenSim/Region/Framework | |
parent | Fix bug in implementation of "show part pos" that would not filter probably. (diff) | |
download | opensim-SC_OLD-16c9c1dff7bbf299efddd44e4f9aeeb7db38fff6.zip opensim-SC_OLD-16c9c1dff7bbf299efddd44e4f9aeeb7db38fff6.tar.gz opensim-SC_OLD-16c9c1dff7bbf299efddd44e4f9aeeb7db38fff6.tar.bz2 opensim-SC_OLD-16c9c1dff7bbf299efddd44e4f9aeeb7db38fff6.tar.xz |
On receiving TaskInventoryAccepted with a destination folder in the binary bucket slot for RLV, notify the viewer about inventory folder updates.
The viewer would not see the folder move without this, either on accept or decline.
This commit also updates the TaskInventoryOffered message to better conform with the data LL uses
Changes are, agentID is prim owner rather than prim id, agent name is now simply object name rather than name with owner detail,
message is just folder name in single quotes, message is not timestamped.
However, folder is not renamed "still #RLV/~<name>". Long term solution is probably not to do these operations server-side.
Notes will be added to http://opensimulator.org/mantis/view.php?id=6311
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 3b59dc4..b23ddb4 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1424,7 +1424,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1424 | return newFolderID; | 1424 | return newFolderID; |
1425 | } | 1425 | } |
1426 | 1426 | ||
1427 | private void SendInventoryUpdate(IClientAPI client, InventoryFolderBase folder, bool fetchFolders, bool fetchItems) | 1427 | public void SendInventoryUpdate(IClientAPI client, InventoryFolderBase folder, bool fetchFolders, bool fetchItems) |
1428 | { | 1428 | { |
1429 | if (folder == null) | 1429 | if (folder == null) |
1430 | return; | 1430 | return; |