Skip to content

Commit

Permalink
Fixed data type on match sequence number.
Browse files Browse the repository at this point in the history
Roll version.
  • Loading branch information
babelshift committed Nov 22, 2019
1 parent eb4dd3c commit 4e164e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ internal class MatchDetailResult
public ulong MatchId { get; set; }

[JsonProperty(PropertyName = "match_seq_num")]
public uint MatchSequenceNumber { get; set; }
public ulong MatchSequenceNumber { get; set; }

[JsonProperty(PropertyName = "tower_status_radiant")]
public uint TowerStatusRadiant { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal class MatchHistoryMatch
public ulong MatchId { get; set; }

[JsonProperty(PropertyName = "match_seq_num")]
public uint MatchSequenceNumber { get; set; }
public ulong MatchSequenceNumber { get; set; }

[JsonProperty(PropertyName = "start_time")]
[JsonConverter(typeof(UnixTimeJsonConverter))]
Expand Down
4 changes: 2 additions & 2 deletions src/SteamWebAPI2/SteamWebAPI2.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>This is a .NET library that makes it easy to use the Steam Web API. It conveniently wraps around all of the JSON data and ugly API details with clean methods, structures and classes.</Description>
<VersionPrefix>4.0.9</VersionPrefix>
<VersionPrefix>4.0.10</VersionPrefix>
<Authors>Justin Skiles</Authors>
<AssemblyName>SteamWebAPI2</AssemblyName>
<PackageId>SteamWebAPI2</PackageId>
Expand All @@ -14,7 +14,7 @@
<ItemGroup>
<PackageReference Include="automapper" Version="6.1.1" />
<PackageReference Include="newtonsoft.json" Version="10.0.3" />
<PackageReference Include="Steam.Models" Version="3.0.8" />
<PackageReference Include="Steam.Models" Version="3.0.10" />
</ItemGroup>

</Project>

0 comments on commit 4e164e7

Please sign in to comment.