Skip to content

Commit

Permalink
Fix Match Properies (BenFradet#694) (BenFradet#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
xXLAOKOONXx authored Aug 3, 2021
1 parent 95ec347 commit 0034e64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RiotSharp/Endpoints/MatchEndpoint/MatchInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ internal MatchInfo() { }
/// The game duration.
/// </summary>
[JsonProperty("gameDuration")]
[JsonConverter(typeof(TimeSpanConverterFromSeconds))]
[JsonConverter(typeof(TimeSpanConverterFromMilliseconds))]
public TimeSpan GameDuration { get; set; }

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion RiotSharp/Endpoints/MatchEndpoint/TeamStats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ internal TeamStats() { }
/// A string indicating whether or not the team won.
/// </summary>
[JsonProperty("win")]
public string Win { get; set; }
public bool Win { get; set; }
}
}

0 comments on commit 0034e64

Please sign in to comment.