1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-27 19:50:18 +08:00

Fix issue

This commit is contained in:
KingLuigi4932
2019-06-10 21:50:08 +03:00
Unverified
parent 75716af25e
commit fc3e1e6a86
+1 -1
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);
}
}