Fix links from profile top scores to beatmaps not working correctly

This commit is contained in:
Dean Herbert
2018-07-05 21:00:23 +09:00
parent 6ae342d1a0
commit 625b9ead4c
3 changed files with 13 additions and 3 deletions

View File

@ -63,7 +63,14 @@ namespace osu.Game.Online.API.Requests.Responses
[JsonProperty(@"beatmapset")]
private BeatmapMetadata metadata
{
set => Beatmap.Metadata = value;
set
{
// extract the set ID to its correct place.
Beatmap.BeatmapSet = new BeatmapSetInfo { OnlineBeatmapSetID = value.ID };
value.ID = 0;
Beatmap.Metadata = value;
}
}
[JsonProperty(@"statistics")]