1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-17 09:22:34 +08:00

Fix viewing beatmap details in ranked play not working (#37351)

https://discord.com/channels/188630481301012481/1440912440224120882/1495066077175222422

Haven't really tested whether this works - dev server is also lacking
data in general, however relying on the previous example set by quick
play:


https://github.com/ppy/osu/blob/1168c477d95f019aea2b676ef51db4ab6cd7253f/osu.Game/Screens/OnlinePlay/Matchmaking/Match/BeatmapSelect/MatchmakingSelectPanel.CardContentBeatmap.cs#L418-L421
This commit is contained in:
Dan Balasescu
2026-04-20 16:01:03 +09:00
committed by GitHub
Unverified
parent 807b21ed97
commit 5995ecf5de
@@ -141,7 +141,7 @@ namespace osu.Game.Screens.OnlinePlay.Matchmaking.RankedPlay.Card
public MenuItem[] ContextMenuItems =>
[
new OsuMenuItem(ContextMenuStrings.ViewBeatmap, MenuItemType.Highlighted, () => beatmapSetOverlay?.ShowBeatmapSet(Beatmap.BeatmapSet))
new OsuMenuItem(ContextMenuStrings.ViewBeatmap, MenuItemType.Highlighted, () => beatmapSetOverlay?.FetchAndShowBeatmap(Beatmap.OnlineID))
];
}
}