Skip to content

Commit

Permalink
Merge pull request jellyfin#3792 from cvium/fix_tmdb_deserialize
Browse files Browse the repository at this point in the history
TMDb: Change Budget and Revenue to long to avoid overflow
  • Loading branch information
dkanada committed Aug 2, 2020
2 parents 43fa983 + e7d9d8f commit 254ef6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class MovieResult

public BelongsToCollection Belongs_To_Collection { get; set; }

public int Budget { get; set; }
public long Budget { get; set; }

public List<Genre> Genres { get; set; }

Expand All @@ -39,7 +39,7 @@ public class MovieResult

public string Release_Date { get; set; }

public int Revenue { get; set; }
public long Revenue { get; set; }

public int Runtime { get; set; }

Expand Down

0 comments on commit 254ef6b

Please sign in to comment.