mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 15:47:26 +08:00
Fix incorrect score id being used
This commit is contained in:
parent
2b77f99f56
commit
a4a4c87612
@ -167,7 +167,7 @@ namespace osu.Game.Screens.Multi.Ranking
|
||||
}
|
||||
|
||||
// Invoke callback to add the scores. Exclude the user's current score which was added previously.
|
||||
callback.Invoke(scoreInfos.Where(s => s.ID != Score?.OnlineScoreID));
|
||||
callback.Invoke(scoreInfos.Where(s => s.OnlineScoreID != Score?.OnlineScoreID));
|
||||
|
||||
hideLoadingSpinners(pivot);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user