mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 15:16:38 +09:00
Make missing date check more robust
This commit is contained in:
@ -76,7 +76,7 @@ namespace osu.Game.Overlays.Profile.Sections.Historical
|
||||
static bool hasMissingDates(UserHistoryCount prev, UserHistoryCount current)
|
||||
{
|
||||
var possibleCurrent = prev.Date.AddMonths(1);
|
||||
return possibleCurrent != current.Date;
|
||||
return possibleCurrent < current.Date;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user