Fix issue

This commit is contained in:
KingLuigi4932 2019-06-10 21:50:08 +03:00
parent 75716af25e
commit fc3e1e6a86

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);
}
}