mirror of
https://github.com/ppy/osu.git
synced 2024-12-17 15:33:04 +08:00
Merge pull request #29058 from frenzibyte/daily-challenge-fix-score-selection
Fix daily challenge abruptly discarding score selection when opening results screen
This commit is contained in:
commit
9790c5a574
@ -29,7 +29,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
|
|||||||
{
|
{
|
||||||
var scoreInfos = base.PerformSuccessCallback(callback, scores, pivot);
|
var scoreInfos = base.PerformSuccessCallback(callback, scores, pivot);
|
||||||
|
|
||||||
Schedule(() => SelectedScore.Value = scoreInfos.SingleOrDefault(score => score.OnlineID == scoreId));
|
Schedule(() => SelectedScore.Value ??= scoreInfos.SingleOrDefault(score => score.OnlineID == scoreId));
|
||||||
|
|
||||||
return scoreInfos;
|
return scoreInfos;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user