Fixed big bug in AgentAssetTransactions, now don't seem to be getting any AbortXfer packets. And the "saving data" message in the client on logout seems to have gone. (So that message was all my fault.)

ThreadPoolClientBranch
MW 2008-02-20 11:25:36 +00:00
parent 37b989a8c6
commit 4c2e304ce6
1 changed files with 4 additions and 4 deletions

View File

@ -79,18 +79,18 @@ namespace OpenSim.Region.Environment.Modules
public void HandleXfer(ulong xferID, uint packetID, byte[] data)
{
AssetXferUploader uploaderFound = null;
// AssetXferUploader uploaderFound = null;
lock (XferUploaders)
{
foreach (AssetXferUploader uploader in XferUploaders.Values)
{
if (uploader.XferID == xferID)
{
{
uploader.HandleXferPacket(xferID, packetID, data);
break;
}
}
}
}
}