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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user