mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 17:33:02 +08:00
Fix one missed instance of GetResultSafely
This commit is contained in:
parent
f451560203
commit
58f8aae731
@ -170,7 +170,7 @@ namespace osu.Game.Screens.Select.Leaderboards
|
|||||||
scores = scores.Detach();
|
scores = scores.Detach();
|
||||||
|
|
||||||
scoreManager.OrderByTotalScoreAsync(scores.ToArray(), cancellationToken)
|
scoreManager.OrderByTotalScoreAsync(scores.ToArray(), cancellationToken)
|
||||||
.ContinueWith(ordered => scoresCallback?.Invoke(ordered.Result), TaskContinuationOptions.OnlyOnRanToCompletion);
|
.ContinueWith(ordered => scoresCallback?.Invoke(ordered.GetResultSafely()), TaskContinuationOptions.OnlyOnRanToCompletion);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user