1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 14:17:26 +08:00

Fix potential nullref on disposal

This commit is contained in:
Dean Herbert 2019-08-13 14:45:27 +09:00
parent ad24265730
commit de1ab56a2c

View File

@ -197,8 +197,11 @@ namespace osu.Game.Overlays
{
base.Dispose(isDisposing);
beatmaps.ItemAdded -= handleBeatmapAdded;
beatmaps.ItemRemoved -= handleBeatmapRemoved;
if (beatmaps != null)
{
beatmaps.ItemAdded -= handleBeatmapAdded;
beatmaps.ItemRemoved -= handleBeatmapRemoved;
}
}
}