diff --git a/ArchiSteamFarm/Collections/ConcurrentHashSet.cs b/ArchiSteamFarm/Collections/ConcurrentHashSet.cs index 232d59b0c..54755a787 100644 --- a/ArchiSteamFarm/Collections/ConcurrentHashSet.cs +++ b/ArchiSteamFarm/Collections/ConcurrentHashSet.cs @@ -187,7 +187,7 @@ public sealed class ConcurrentHashSet : IReadOnlySet, ISet where T : no IReadOnlySet otherSet = other as IReadOnlySet ?? other.ToHashSet(); - HashSet removed = otherSet.Where(item => Contains(item) && BackingCollection.TryRemove(item, out _)).ToHashSet(); + HashSet removed = otherSet.Where(item => BackingCollection.TryRemove(item, out _)).ToHashSet(); bool modified = removed.Count > 0;