diff --git a/osu.Game/Beatmaps/BeatmapManager.cs b/osu.Game/Beatmaps/BeatmapManager.cs
index a9340e1250..43e4b482bd 100644
--- a/osu.Game/Beatmaps/BeatmapManager.cs
+++ b/osu.Game/Beatmaps/BeatmapManager.cs
@@ -171,7 +171,11 @@ namespace osu.Game.Beatmaps
/// A list of available .
public List GetAllUsableBeatmapSets()
{
- return contextFactory.Run(realm => realm.All().Where(b => !b.DeletePending).Detach());
+ return contextFactory.Run(realm =>
+ {
+ realm.Refresh();
+ return realm.All().Where(b => !b.DeletePending).Detach();
+ });
}
///