fix AnyFilesDownloading

This commit is contained in:
rootdarkarchon
2024-03-01 11:17:20 +01:00
parent 68f0b28e9d
commit 7410c09a4c

View File

@@ -161,6 +161,6 @@ public sealed class CachedFileProvider : IDisposable
public bool AnyFilesDownloading(List<string> hashes)
{
return hashes.TrueForAll(_currentTransfers.Keys.Contains);
return hashes.Exists(_currentTransfers.Keys.Contains);
}
}