Merge pull request #3792 from cvium/fix_tmdb_deserialize

TMDb: Change Budget and Revenue to long to avoid overflow
This commit is contained in:
dkanada 2020-08-03 07:02:17 +09:00 committed by GitHub
commit 254ef6bc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
public BelongsToCollection Belongs_To_Collection { get; set; } public BelongsToCollection Belongs_To_Collection { get; set; }
public int Budget { get; set; } public long Budget { get; set; }
public List<Genre> Genres { get; set; } public List<Genre> Genres { get; set; }
@ -39,7 +39,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
public string Release_Date { get; set; } public string Release_Date { get; set; }
public int Revenue { get; set; } public long Revenue { get; set; }
public int Runtime { get; set; } public int Runtime { get; set; }