Fix scores not being recalculated in beatmap listing

This commit is contained in:
Dan Balasescu
2022-03-08 19:07:39 +09:00
parent e0dc3a04f3
commit f5cd967635
2 changed files with 3 additions and 2 deletions

View File

@ -79,7 +79,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
var beatmapInfo = new BeatmapInfo
{
MaxCombo = apiBeatmap.MaxCombo,
Status = apiBeatmap.Status
Status = apiBeatmap.Status,
MD5Hash = apiBeatmap.MD5Hash
};
scoreManager.OrderByTotalScoreAsync(value.Scores.Select(s => s.CreateScoreInfo(rulesets, beatmapInfo)).ToArray(), loadCancellationSource.Token)