1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 10:12:54 +08:00

Move check to SoloResultsScreen

This commit is contained in:
Shane Woolcock 2020-06-03 11:36:47 +09:30
parent 90213d079d
commit 96e3c6e8e8
2 changed files with 10 additions and 9 deletions

View File

@ -141,17 +141,14 @@ namespace osu.Game.Screens.Ranking
{
base.LoadComplete();
if (Score.Beatmap.OnlineBeatmapID != null && Score.Beatmap.Status > BeatmapSetOnlineStatus.Pending)
var req = FetchScores(scores => Schedule(() =>
{
var req = FetchScores(scores => Schedule(() =>
{
foreach (var s in scores)
panels.AddScore(s);
}));
foreach (var s in scores)
panels.AddScore(s);
}));
if (req != null)
api.Queue(req);
}
if (req != null)
api.Queue(req);
}
/// <summary>

View File

@ -5,6 +5,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Game.Beatmaps;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Rulesets;
@ -24,6 +25,9 @@ namespace osu.Game.Screens.Ranking
protected override APIRequest FetchScores(Action<IEnumerable<ScoreInfo>> scoresCallback)
{
if (Score.Beatmap.OnlineBeatmapID == null || Score.Beatmap.Status <= BeatmapSetOnlineStatus.Pending)
return null;
var req = new GetScoresRequest(Score.Beatmap, Score.Ruleset);
req.Success += r => scoresCallback?.Invoke(r.Scores.Where(s => s.OnlineScoreID != Score.OnlineScoreID).Select(s => s.CreateScoreInfo(rulesets)));
return req;