mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Merge pull request #3792 from cvium/fix_tmdb_deserialize
TMDb: Change Budget and Revenue to long to avoid overflow (cherry picked from commit 254ef6bc0d278874a2fd3597ae33b99ca0649af9) Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
4e6e310b71
commit
e657781459
@ -13,7 +13,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Models.Movies
|
||||
|
||||
public BelongsToCollection Belongs_To_Collection { get; set; }
|
||||
|
||||
public int Budget { get; set; }
|
||||
public long Budget { 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 int Revenue { get; set; }
|
||||
public long Revenue { get; set; }
|
||||
|
||||
public int Runtime { get; set; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user