mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 09:20:02 +09:00
Fix nullref in tests
This commit is contained in:
@ -25,7 +25,7 @@ namespace osu.Game.Screens.Select.Carousel
|
|||||||
{
|
{
|
||||||
base.Filter(criteria);
|
base.Filter(criteria);
|
||||||
|
|
||||||
if (Beatmap.BeatmapSet.Equals(criteria.SelectedBeatmapSet))
|
if (Beatmap.BeatmapSet?.Equals(criteria.SelectedBeatmapSet) == true)
|
||||||
{
|
{
|
||||||
// bypass filtering for selected beatmap
|
// bypass filtering for selected beatmap
|
||||||
Filtered.Value = false;
|
Filtered.Value = false;
|
||||||
|
Reference in New Issue
Block a user