|
|
@ -36,7 +36,12 @@ namespace NzbDrone.Core.Parser.Model
|
|
|
|
public bool IsPossibleSpecialEpisode()
|
|
|
|
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
|
|
|
|
// 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.IsNullOrEmpty(AirDate) &&
|
|
|
|
|
|
|
|
(
|
|
|
|
|
|
|
|
EpisodeNumbers.Length == 0 ||
|
|
|
|
|
|
|
|
SeasonNumber == 0 ||
|
|
|
|
|
|
|
|
String.IsNullOrWhiteSpace(SeriesTitle)
|
|
|
|
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
public override string ToString()
|
|
|
|