HG: Remove async in posting assets to foreign grid. Mono hates concurrency there.

xassetservice
Diva Canto 2012-02-25 21:00:19 -08:00
parent 01f454242d
commit 142f8a4aec
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
string userAssetServer = string.Empty;
if (IsForeignUser(avatarID, out userAssetServer) && userAssetServer != string.Empty && m_OutboundPermission)
{
Util.FireAndForget(delegate { m_assMapper.Post(assetID, avatarID, userAssetServer); });
m_assMapper.Post(assetID, avatarID, userAssetServer);
}
}