mirror of
https://github.com/osukey/osukey.git
synced 2025-08-08 09:03:50 +09:00
Fix nulls
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user