mirror of https://github.com/ppy/osu
Add more specific checks
This commit is contained in:
parent
c7c5837ec1
commit
b5ba74a628
|
@ -253,7 +253,7 @@ protected override void PresentCompletedImport(IEnumerable<BeatmapSetInfo> impor
|
|||
/// <returns>A <see cref="WorkingBeatmap"/> instance correlating to the provided <see cref="BeatmapInfo"/>.</returns>
|
||||
public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo beatmapInfo, WorkingBeatmap previous = null)
|
||||
{
|
||||
if (previous != null && previous.BeatmapInfo.ID == beatmapInfo.ID)
|
||||
if (beatmapInfo?.ID > 0 && previous != null && previous.BeatmapInfo?.ID == beatmapInfo.ID)
|
||||
return previous;
|
||||
|
||||
if (beatmapInfo?.BeatmapSet == null || beatmapInfo == DefaultBeatmap?.BeatmapInfo)
|
||||
|
|
Loading…
Reference in New Issue