This commit is contained in:
Cinder Biscuits
2020-05-09 12:59:06 -05:00
parent 6d0ff2db02
commit 4f72d1d025
21 changed files with 45 additions and 96 deletions

View File

@@ -305,10 +305,7 @@ namespace OpenMetaverse.TestClient
lock (CurrentDownloads)
{
// see if we have this in our transfer list
QueuedDownloadInfo r = CurrentDownloads.Find(delegate(QueuedDownloadInfo q)
{
return q.AssetID == asset.AssetID;
});
QueuedDownloadInfo r = CurrentDownloads.Find(q => q.AssetID == asset.AssetID);
if (r != null && r.AssetID == asset.AssetID)
{