1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 22:27:25 +08:00

Fix issue

This commit is contained in:
iiSaLMaN 2019-06-10 21:54:33 +03:00 committed by GitHub
parent ae284d1127
commit 94a7794ff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,7 +121,7 @@ namespace osu.Game.Overlays
public void ShowBeatmapSet(BeatmapSetInfo set)
{
// Re-fetching is the correct way forward.
FetchAndShowBeatmapSet(set.OnlineBeatmapSetID ?? 0);
FetchAndShowBeatmapSet(set?.OnlineBeatmapSetID ?? 0);
scroll.ScrollTo(0);
}
}