1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 04:49:58 +08:00

Fix oversight in date handling

This commit is contained in:
Dean Herbert
2025-05-29 20:50:50 +09:00
Unverified
parent a8eff6b096
commit 66e2c5c287
@@ -165,7 +165,7 @@ namespace osu.Game.Screens.SelectV2
if (BeatmapSetsGroupedTogether)
date = aggregateMax(b, static b => (b.LastPlayed ?? DateTimeOffset.MinValue));
if (date == null)
if (date == null || date == DateTimeOffset.MinValue)
return new GroupDefinition(int.MaxValue, "Never");
return defineGroupByDate(date.Value);