mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-23 22:25:14 -04:00
Possible special is less aggressive, with tests
This commit is contained in:
@@ -37,12 +37,9 @@ namespace NzbDrone.Core.Parser.Model
|
||||
public bool IsPossibleSpecialEpisode()
|
||||
{
|
||||
// if we dont have eny episode numbers we are likely a special episode and need to do a search by episode title
|
||||
return string.IsNullOrEmpty(AirDate) &&
|
||||
(
|
||||
EpisodeNumbers.Length == 0 ||
|
||||
SeasonNumber == 0 ||
|
||||
String.IsNullOrWhiteSpace(SeriesTitle)
|
||||
);
|
||||
return String.IsNullOrWhiteSpace(AirDate) &&
|
||||
(EpisodeNumbers.Length == 0 || SeasonNumber == 0) &&
|
||||
String.IsNullOrWhiteSpace(SeriesTitle);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
|
||||
Reference in New Issue
Block a user