Merge pull request #8128 from mcendu/beatmap-status

Fix beatmap status always using "ranked" for Ranked field
This commit is contained in:
Dan Balasescu 2020-03-04 18:54:45 +09:00 committed by GitHub
commit fe7f13cb77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -59,7 +59,7 @@ namespace osu.Game.Overlays.BeatmapSet
if (online.Ranked.HasValue)
{
fields.Add(new Field("ranked", online.Ranked.Value, OsuFont.GetFont(weight: FontWeight.Bold)));
fields.Add(new Field(online.Status.ToString().ToLowerInvariant(), online.Ranked.Value, OsuFont.GetFont(weight: FontWeight.Bold)));
}
else if (online.LastUpdated.HasValue)
{