Fix lookup type being incorrect when fetching beatmap set

This commit is contained in:
Joseph Madamba 2023-01-11 19:06:51 -08:00
parent f8fade7967
commit 2076f9fd08

View File

@ -138,7 +138,7 @@ namespace osu.Game.Overlays
if (lastLookup == null) if (lastLookup == null)
return; return;
var req = new GetBeatmapSetRequest(lastLookup.Value.id, BeatmapSetLookupType.BeatmapId); var req = new GetBeatmapSetRequest(lastLookup.Value.id, lastLookup.Value.type);
req.Success += res => req.Success += res =>
{ {
beatmapSet.Value = res; beatmapSet.Value = res;