1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 12:57:36 +08:00

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)
return;
var req = new GetBeatmapSetRequest(lastLookup.Value.id, BeatmapSetLookupType.BeatmapId);
var req = new GetBeatmapSetRequest(lastLookup.Value.id, lastLookup.Value.type);
req.Success += res =>
{
beatmapSet.Value = res;