From 66e2c5c287ea90b291bcce4ba0729ff39e622ab9 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 29 May 2025 20:50:50 +0900 Subject: [PATCH] Fix oversight in date handling --- osu.Game/Screens/SelectV2/BeatmapCarouselFilterGrouping.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Screens/SelectV2/BeatmapCarouselFilterGrouping.cs b/osu.Game/Screens/SelectV2/BeatmapCarouselFilterGrouping.cs index 1174e172e1..7d449661ab 100644 --- a/osu.Game/Screens/SelectV2/BeatmapCarouselFilterGrouping.cs +++ b/osu.Game/Screens/SelectV2/BeatmapCarouselFilterGrouping.cs @@ -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);