1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 02:07:34 +08:00

Fix incorrect score id being used

This commit is contained in:
smoogipoo 2020-07-31 21:21:48 +09:00
parent 2b77f99f56
commit a4a4c87612

View File

@ -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);
}