1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 22:00:57 +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
Unverified
parent f8fade7967
commit 2076f9fd08
+1 -1
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;