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

Add support for retrieving user tags from local metadata cache

This commit is contained in:
Bartłomiej Dach
2025-07-23 09:12:18 +02:00
Unverified
parent a17d463c0f
commit 05923d3b2b
4 changed files with 72 additions and 1 deletions
@@ -63,7 +63,9 @@ namespace osu.Game.Beatmaps
DateRanked = res.BeatmapSet?.Ranked,
DateSubmitted = res.BeatmapSet?.Submitted,
MD5Hash = res.MD5Hash,
LastUpdated = res.LastUpdated
LastUpdated = res.LastUpdated,
// Tags are not populated because the response does not contain tag data.
// TODO: consider web change to include the tag data? or a second web request for the set to retrieve tags?
};
return true;
}