Skip to content

Commit

Permalink
Allow decimal ratings for episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevinjil committed Jan 3, 2025
1 parent 654b06e commit 8a51bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jellyfin.Xtream/Client/Models/EpisodeInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class EpisodeInfo
public DateTime ReleaseDate { get; set; }

[JsonProperty("rating")]
public int Rating { get; set; }
public decimal Rating { get; set; }

[JsonProperty("duration_secs")]
public int DurationSecs { get; set; }
Expand Down

0 comments on commit 8a51bed

Please sign in to comment.