diff options
author | diva | 2009-05-30 16:22:15 +0000 |
---|---|---|
committer | diva | 2009-05-30 16:22:15 +0000 |
commit | 822c2176dfc373f4810ceb1de71113b02efa9d93 (patch) | |
tree | 551cce2988efc94711845a1304a62a19a8d87b2c | |
parent | Added option (on my default) to the clone avatar function so that the clothes... (diff) | |
download | opensim-SC_OLD-822c2176dfc373f4810ceb1de71113b02efa9d93.zip opensim-SC_OLD-822c2176dfc373f4810ceb1de71113b02efa9d93.tar.gz opensim-SC_OLD-822c2176dfc373f4810ceb1de71113b02efa9d93.tar.bz2 opensim-SC_OLD-822c2176dfc373f4810ceb1de71113b02efa9d93.tar.xz |
Forgot to add this to my last commit 2 days ago. Async in the HGBroker too.
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectors/Asset/HGAssetBroker.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectors/Asset/HGAssetBroker.cs b/OpenSim/Region/CoreModules/ServiceConnectors/Asset/HGAssetBroker.cs index 42acde7..57b5dc3 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectors/Asset/HGAssetBroker.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectors/Asset/HGAssetBroker.cs | |||
@@ -267,7 +267,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Asset | |||
267 | 267 | ||
268 | if (asset != null) | 268 | if (asset != null) |
269 | { | 269 | { |
270 | handler(id, sender, asset); | 270 | handler.BeginInvoke(id, sender, asset, null, null); |
271 | return true; | 271 | return true; |
272 | } | 272 | } |
273 | 273 | ||