Converted rageid to long instead of int to handle nzbx.co default.

Fixed: Issue with some series when searching nzbx.co
This commit is contained in:
Mark McDowall 2013-04-17 16:47:54 -07:00
parent 649c5013b5
commit 1824fd6682
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ namespace NzbDrone.Core.Model.Nzbx
public int CategoryId { get; set; }
public string ImdbId { get; set; }
public string AnidbId { get; set; }
public int RageId { get; set; }
public long RageId { get; set; }
public int Comments { get; set; }
public int Downloads { get; set; }
public NzbxVotesModel Votes { get; set; }

View File

@ -47,7 +47,7 @@ namespace NzbDrone.Core.Model.Nzbx
public int Completion { get; set; }
public int CategoryId { get; set; }
public string ImdbId { get; set; }
public int RageId { get; set; }
public long RageId { get; set; }
public int Comments { get; set; }
public int Downloads { get; set; }
public NzbxVotesModel Votes { get; set; }