mirror of
https://github.com/ppy/osu.git
synced 2025-03-21 23:20:16 +08:00
Fix typo.
This commit is contained in:
parent
c55d406b44
commit
8b048a6706
@ -9,13 +9,13 @@ using osu.Game.Rulesets.Scoring;
|
||||
|
||||
namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
public class GetBeatmapDeatilsRequest : APIRequest<GetBeatmapDeatilsResponse>
|
||||
public class GetBeatmapDetailsRequest : APIRequest<GetBeatmapDeatilsResponse>
|
||||
{
|
||||
private readonly BeatmapInfo beatmap;
|
||||
|
||||
private string lookupString;
|
||||
|
||||
public GetBeatmapDeatilsRequest(BeatmapInfo beatmap)
|
||||
public GetBeatmapDetailsRequest(BeatmapInfo beatmap)
|
||||
{
|
||||
this.beatmap = beatmap;
|
||||
}
|
||||
|
@ -75,7 +75,7 @@ namespace osu.Game.Screens.Select
|
||||
var requestedBeatmap = beatmap;
|
||||
if (requestedBeatmap.Metrics == null)
|
||||
{
|
||||
var lookup = new GetBeatmapDeatilsRequest(requestedBeatmap);
|
||||
var lookup = new GetBeatmapDetailsRequest(requestedBeatmap);
|
||||
lookup.Success += res =>
|
||||
{
|
||||
if (beatmap != requestedBeatmap)
|
||||
|
Loading…
x
Reference in New Issue
Block a user