Fix intro screen

Fix things
This commit is contained in:
Dean Herbert
2021-12-15 14:36:11 +09:00
parent abd72c496b
commit 8696f82627
2 changed files with 3 additions and 3 deletions

View File

@ -173,7 +173,7 @@ namespace osu.Game.Beatmaps
/// </summary>
/// <param name="query">The query.</param>
/// <returns>Results from the provided query.</returns>
public IEnumerable<BeatmapSetInfo> QueryBeatmapSets(Expression<Func<BeatmapSetInfo, bool>> query) => beatmapModelManager.QueryBeatmapSets(query);
public ILive<IEnumerable<BeatmapSetInfo>> QueryBeatmapSets(Expression<Func<BeatmapSetInfo, bool>> query) => beatmapModelManager.QueryBeatmapSets(query).ToLive(contextFactory);
/// <summary>
/// Perform a lookup query on available <see cref="BeatmapSetInfo"/>s.