mirror of
https://github.com/osukey/osukey.git
synced 2025-08-05 07:33:55 +09:00
Use default
value to denote no play date, rather than null
This commit is contained in:
@ -227,8 +227,8 @@ namespace osu.Game.Screens.Ranking.Expanded
|
||||
}
|
||||
});
|
||||
|
||||
if (score.Date != null)
|
||||
AddInternal(new PlayedOnText(score.Date.Value));
|
||||
if (score.Date != default)
|
||||
AddInternal(new PlayedOnText(score.Date));
|
||||
|
||||
if (score.Mods.Any())
|
||||
{
|
||||
|
Reference in New Issue
Block a user