mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 07:06:35 +09:00
setting BeatmapSets as list to prevent endless LINQ query chain
This commit is contained in:
@ -50,7 +50,7 @@ namespace osu.Game.Overlays
|
||||
{
|
||||
if (beatmapSets?.Equals(value) ?? false) return;
|
||||
|
||||
beatmapSets = value;
|
||||
beatmapSets = value?.ToList();
|
||||
|
||||
if (beatmapSets == null) return;
|
||||
|
||||
|
Reference in New Issue
Block a user