diff options
author | Diva Canto | 2012-03-09 09:48:12 -0800 |
---|---|---|
committer | Diva Canto | 2012-03-09 09:48:12 -0800 |
commit | 81869c4a3fbb3bfbc2a767e381a0820165b461b2 (patch) | |
tree | 639c6f2798022346169646e91bae954c16cdea44 /OpenSim/Region/Framework/Scenes | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-81869c4a3fbb3bfbc2a767e381a0820165b461b2.zip opensim-SC_OLD-81869c4a3fbb3bfbc2a767e381a0820165b461b2.tar.gz opensim-SC_OLD-81869c4a3fbb3bfbc2a767e381a0820165b461b2.tar.bz2 opensim-SC_OLD-81869c4a3fbb3bfbc2a767e381a0820165b461b2.tar.xz |
More on HG inventory transfers. Move the FireAndForget higher up.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-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 23f39a8..6ae4adc 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -633,7 +633,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
633 | { | 633 | { |
634 | IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>(); | 634 | IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>(); |
635 | if (invAccess != null) | 635 | if (invAccess != null) |
636 | invAccess.TransferInventoryAssets(itemCopy, senderId, recipient); | 636 | Util.FireAndForget(delegate { invAccess.TransferInventoryAssets(itemCopy, senderId, recipient); }); |
637 | } | 637 | } |
638 | 638 | ||
639 | if (!Permissions.BypassPermissions()) | 639 | if (!Permissions.BypassPermissions()) |