mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-23 22:45:06 -04:00
Fixed: Scene numbered season searches when some episode weren't monitored
This commit is contained in:
@@ -17,6 +17,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||
public Series Series { get; set; }
|
||||
public List<String> SceneTitles { get; set; }
|
||||
public List<Episode> Episodes { get; set; }
|
||||
public virtual bool MonitoredEpisodesOnly { get; set; }
|
||||
|
||||
public List<String> QueryTitles
|
||||
{
|
||||
|
||||
@@ -4,6 +4,14 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||
{
|
||||
public int SeasonNumber { get; set; }
|
||||
|
||||
public override bool MonitoredEpisodesOnly
|
||||
{
|
||||
get
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return string.Format("[{0} : S{1:00}]", Series.Title, SeasonNumber);
|
||||
|
||||
Reference in New Issue
Block a user