Replace compatibility properties with direct references

This commit is contained in:
Dean Herbert
2022-01-12 18:05:25 +09:00
parent 482cf29e28
commit eb70a1eeb7
10 changed files with 16 additions and 32 deletions

View File

@ -110,7 +110,7 @@ namespace osu.Game.Screens.Select.Leaderboards
return;
scoreSubscription = realmFactory.Context.All<ScoreInfo>()
.Filter($"{nameof(ScoreInfo.Beatmap)}.{nameof(BeatmapInfo.ID)} = $0", beatmapInfo.ID)
.Filter($"{nameof(ScoreInfo.BeatmapInfo)}.{nameof(BeatmapInfo.ID)} = $0", beatmapInfo.ID)
.QueryAsyncWithNotifications((_, changes, ___) =>
{
if (changes == null)