diff --git a/osu.Game/Screens/Select/SongSelect.cs b/osu.Game/Screens/Select/SongSelect.cs index 4982ca096f..c352e6e034 100644 --- a/osu.Game/Screens/Select/SongSelect.cs +++ b/osu.Game/Screens/Select/SongSelect.cs @@ -198,8 +198,11 @@ namespace osu.Game.Screens.Select var pendingSelection = selectionChangedDebounce; selectionChangedDebounce = null; - pendingSelection?.RunTask(); - pendingSelection?.Cancel(); // cancel the already scheduled task. + if (pendingSelection?.Completed == false) + { + pendingSelection?.RunTask(); + pendingSelection?.Cancel(); // cancel the already scheduled task. + } if (Beatmap == null) return;