mirror of
https://github.com/ppy/osu.git
synced 2025-01-07 18:33:04 +08:00
Fix nulls
This commit is contained in:
parent
072e5db6ef
commit
057ada0183
@ -49,7 +49,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader(true)]
|
||||||
private void load(UserProfileOverlay profile)
|
private void load(UserProfileOverlay profile)
|
||||||
{
|
{
|
||||||
this.profile = profile;
|
this.profile = profile;
|
||||||
|
@ -105,7 +105,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
|||||||
{
|
{
|
||||||
request?.Cancel();
|
request?.Cancel();
|
||||||
|
|
||||||
if (beatmap == null)
|
if (!beatmap?.OnlineBeatmapID.HasValue ?? false)
|
||||||
{
|
{
|
||||||
clearAllScores();
|
clearAllScores();
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user