1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 02:39:52 +08:00

Merge pull request #20498 from peppy/fix-rank-history-serialisation-order

Fix `rank_history` serialisation order dependence
This commit is contained in:
Dan Balasescu
2022-09-27 13:44:03 +09:00
committed by GitHub
Unverified
@@ -228,7 +228,7 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"rank_history")]
private APIRankHistory rankHistory
{
set => statistics.RankHistory = value;
set => Statistics.RankHistory = value;
}
[JsonProperty("badges")]