mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-19 09:32:34 +02:00
Change Budget and Revenue to long to avoid overflow
This commit is contained in:
parent
b7421db5fe
commit
e7d9d8f7c5
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue