1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 20:22:55 +08:00

Rename incorrect parameter name in BeatmapManager.GetWorkingBeatmap

This commit is contained in:
Dean Herbert 2022-06-24 17:46:46 +09:00
parent c7e92f46f4
commit 2ae48d5a87

View File

@ -418,22 +418,22 @@ namespace osu.Game.Beatmaps
#region Implementation of IWorkingBeatmapCache #region Implementation of IWorkingBeatmapCache
public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo? importedBeatmap) public WorkingBeatmap GetWorkingBeatmap(BeatmapInfo? beatmapInfo)
{ {
// Detached sets don't come with files. // Detached sets don't come with files.
// If we seem to be missing files, now is a good time to re-fetch. // If we seem to be missing files, now is a good time to re-fetch.
if (importedBeatmap?.BeatmapSet?.Files.Count == 0) if (beatmapInfo?.BeatmapSet?.Files.Count == 0)
{ {
Realm.Run(r => Realm.Run(r =>
{ {
var refetch = r.Find<BeatmapInfo>(importedBeatmap.ID)?.Detach(); var refetch = r.Find<BeatmapInfo>(beatmapInfo.ID)?.Detach();
if (refetch != null) if (refetch != null)
importedBeatmap = refetch; beatmapInfo = refetch;
}); });
} }
return workingBeatmapCache.GetWorkingBeatmap(importedBeatmap); return workingBeatmapCache.GetWorkingBeatmap(beatmapInfo);
} }
void IWorkingBeatmapCache.Invalidate(BeatmapSetInfo beatmapSetInfo) => workingBeatmapCache.Invalidate(beatmapSetInfo); void IWorkingBeatmapCache.Invalidate(BeatmapSetInfo beatmapSetInfo) => workingBeatmapCache.Invalidate(beatmapSetInfo);