fix AnyFilesDownloading

This commit is contained in:
rootdarkarchon
2024-08-27 15:07:18 +00:00
committed by Loporrit
parent 012ae04dce
commit c06edeebdd
@@ -161,6 +161,6 @@ public sealed class CachedFileProvider : IDisposable
public bool AnyFilesDownloading(List<string> hashes) public bool AnyFilesDownloading(List<string> hashes)
{ {
return hashes.TrueForAll(_currentTransfers.Keys.Contains); return hashes.Exists(_currentTransfers.Keys.Contains);
} }
} }