fix AnyFilesDownloading

This commit is contained in:
rootdarkarchon
2024-03-01 11:17:20 +01:00
committed by Loporrit
parent 012ae04dce
commit c06edeebdd

View File

@@ -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);
} }
} }