mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
ToString should never return null
This commit is contained in:
@ -61,6 +61,6 @@ namespace osu.Game.Beatmaps
|
||||
{
|
||||
public new Beatmap Clone() => (Beatmap)base.Clone();
|
||||
|
||||
public override string ToString() => BeatmapInfo?.ToString();
|
||||
public override string ToString() => BeatmapInfo?.ToString() ?? base.ToString();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user