mirror of
https://github.com/ppy/osu
synced 2024-12-15 03:16:17 +00:00
Merge pull request #12344 from peppy/fix-solo-score-api-routes
Fix slightly incorrect solo score submission routes
This commit is contained in:
commit
e89b962bd3
@ -27,6 +27,6 @@ namespace osu.Game.Online.Solo
|
||||
return req;
|
||||
}
|
||||
|
||||
protected override string Target => $@"solo/{beatmapId}/scores";
|
||||
protected override string Target => $@"beatmaps/{beatmapId}/solo/scores";
|
||||
}
|
||||
}
|
||||
|
@ -40,6 +40,6 @@ namespace osu.Game.Online.Solo
|
||||
return req;
|
||||
}
|
||||
|
||||
protected override string Target => $@"solo/{beatmapId}/scores/{scoreId}";
|
||||
protected override string Target => $@"beatmaps/{beatmapId}/solo/scores/{scoreId}";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user