mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix lookups by beatmapinfo failing for imports of existing sores
This commit is contained in:
@ -16,6 +16,9 @@ namespace osu.Game.Scoring
|
||||
}
|
||||
|
||||
protected override IQueryable<ScoreInfo> AddIncludesForConsumption(IQueryable<ScoreInfo> query)
|
||||
=> base.AddIncludesForConsumption(query).Include(s => s.Files).ThenInclude(f => f.FileInfo);
|
||||
=> base.AddIncludesForConsumption(query)
|
||||
.Include(s => s.Files).ThenInclude(f => f.FileInfo)
|
||||
.Include(s => s.BeatmapInfo)
|
||||
.Include(s => s.Ruleset);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user