We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58992b2 commit 7564490Copy full SHA for 7564490
osu.Game/Screens/Select/FilterControl.cs
@@ -4,7 +4,7 @@
4
#nullable disable
5
6
using System;
7
-using System.Linq;
+using System.Collections.Immutable;
8
using osu.Framework.Allocation;
9
using osu.Framework.Bindables;
10
using osu.Framework.Graphics;
@@ -65,7 +65,7 @@ public FilterCriteria CreateCriteria()
65
Sort = sortMode.Value,
66
AllowConvertedBeatmaps = showConverted.Value,
67
Ruleset = ruleset.Value,
68
- CollectionBeatmapMD5Hashes = collectionDropdown.Current.Value?.Collection?.PerformRead(c => c.BeatmapMD5Hashes).ToList()
+ CollectionBeatmapMD5Hashes = collectionDropdown.Current.Value?.Collection?.PerformRead(c => c.BeatmapMD5Hashes).ToImmutableHashSet()
69
};
70
71
if (!minimumStars.IsDefault)
0 commit comments