Merge pull request #5326 from iiSaLMaN/fix-beatmap-length-issues

Use the correct property to retrieve the milliseconds for online length
This commit is contained in:
Dean Herbert
2019-07-11 08:21:31 +09:00
committed by GitHub

View File

@ -72,7 +72,7 @@ namespace osu.Game.Online.API.Requests.Responses
StarDifficulty = starDifficulty,
OnlineBeatmapID = OnlineBeatmapID,
Version = version,
Length = TimeSpan.FromSeconds(length).Milliseconds,
Length = TimeSpan.FromSeconds(length).TotalMilliseconds,
Status = Status,
BeatmapSet = set,
Metrics = metrics,