Add back removed nullcheck

This commit is contained in:
smoogipoo 2020-08-07 21:36:02 +09:00
parent b08ebe6f81
commit 08820c62ec
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public PreviewTrack Get(BeatmapSetInfo beatmapSetInfo)
track.Started += () => Schedule(() =>
{
CurrentTrack.Stop();
CurrentTrack?.Stop();
CurrentTrack = track;
audio.Tracks.AddAdjustment(AdjustableProperty.Volume, muteBindable);
});