mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Check sab queue now takes quality into consideration
This commit is contained in:
parent
2d1f506f93
commit
9acfb7330c
15 changed files with 202 additions and 287 deletions
|
@ -15,8 +15,18 @@ namespace NzbDrone.Core.Model.Sabnzbd
|
|||
[JsonProperty(PropertyName = "mb")]
|
||||
public decimal Size { get; set; }
|
||||
|
||||
private string _title;
|
||||
|
||||
[JsonProperty(PropertyName = "filename")]
|
||||
public string Title { get; set; }
|
||||
public string Title
|
||||
{
|
||||
get { return _title; }
|
||||
set
|
||||
{
|
||||
_title = value;
|
||||
ParseResult = Parser.ParseTitle(value);
|
||||
}
|
||||
}
|
||||
|
||||
public SabPriorityType Priority { get; set; }
|
||||
|
||||
|
@ -30,5 +40,7 @@ namespace NzbDrone.Core.Model.Sabnzbd
|
|||
|
||||
[JsonProperty(PropertyName = "nzo_id")]
|
||||
public string Id { get; set; }
|
||||
|
||||
public EpisodeParseResult ParseResult { private set; get; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue