1
0
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:
Dan Balasescu 2021-03-23 14:54:02 +09:00 committed by GitHub
commit d758343a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,6 @@ namespace osu.Game.Online.Rooms
public class APIScoreToken
{
[JsonProperty("id")]
public int ID { get; set; }
public long ID { get; set; }
}
}

View File

@ -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; }