1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 10:33:01 +08:00

Fix incorrect alignment

This commit is contained in:
Dean Herbert 2017-10-25 23:56:18 +09:00
parent 41cc2f725a
commit b89112c2a1

View File

@ -136,16 +136,16 @@ namespace osu.Game.Beatmaps
} }
public IQueryable<BeatmapSetInfo> BeatmapSets => GetContext().BeatmapSetInfo public IQueryable<BeatmapSetInfo> BeatmapSets => GetContext().BeatmapSetInfo
.Include(s => s.Metadata) .Include(s => s.Metadata)
.Include(s => s.Beatmaps).ThenInclude(s => s.Ruleset) .Include(s => s.Beatmaps).ThenInclude(s => s.Ruleset)
.Include(s => s.Beatmaps).ThenInclude(b => b.BaseDifficulty) .Include(s => s.Beatmaps).ThenInclude(b => b.BaseDifficulty)
.Include(s => s.Beatmaps).ThenInclude(b => b.Metadata) .Include(s => s.Beatmaps).ThenInclude(b => b.Metadata)
.Include(s => s.Files).ThenInclude(f => f.FileInfo); .Include(s => s.Files).ThenInclude(f => f.FileInfo);
public IQueryable<BeatmapInfo> Beatmaps => GetContext().BeatmapInfo public IQueryable<BeatmapInfo> Beatmaps => GetContext().BeatmapInfo
.Include(b => b.BeatmapSet).ThenInclude(s => s.Metadata) .Include(b => b.BeatmapSet).ThenInclude(s => s.Metadata)
.Include(b => b.Metadata) .Include(b => b.Metadata)
.Include(b => b.Ruleset) .Include(b => b.Ruleset)
.Include(b => b.BaseDifficulty); .Include(b => b.BaseDifficulty);
} }
} }