mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 22:26:41 +09:00
Fix playlist overlay null reference when attempting an empty selection
As reported at https://github.com/ppy/osu/discussions/16829.
This commit is contained in:
@ -85,7 +85,7 @@ namespace osu.Game.Overlays.Music
|
||||
|
||||
filter.Search.OnCommit += (sender, newText) =>
|
||||
{
|
||||
list.FirstVisibleSet.PerformRead(set =>
|
||||
list.FirstVisibleSet?.PerformRead(set =>
|
||||
{
|
||||
BeatmapInfo toSelect = set.Beatmaps.FirstOrDefault();
|
||||
|
||||
|
Reference in New Issue
Block a user