mirror of
https://github.com/ppy/osu.git
synced 2025-01-28 09:43:10 +08:00
Merge pull request #12149 from peppy/fix-score-token-data-type
Fix APIScoreToken's data type not matching server side
This commit is contained in:
commit
d758343a45
@ -8,6 +8,6 @@ namespace osu.Game.Online.Rooms
|
||||
public class APIScoreToken
|
||||
{
|
||||
[JsonProperty("id")]
|
||||
public int ID { get; set; }
|
||||
public long ID { get; set; }
|
||||
}
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
|
||||
|
||||
protected readonly PlaylistItem PlaylistItem;
|
||||
|
||||
protected int? Token { get; private set; }
|
||||
protected long? Token { get; private set; }
|
||||
|
||||
[Resolved]
|
||||
private IAPIProvider api { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user