|
|
@ -37,12 +37,9 @@ 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) &&
|
|
|
|
return String.IsNullOrWhiteSpace(AirDate) &&
|
|
|
|
(
|
|
|
|
(EpisodeNumbers.Length == 0 || SeasonNumber == 0) &&
|
|
|
|
EpisodeNumbers.Length == 0 ||
|
|
|
|
String.IsNullOrWhiteSpace(SeriesTitle);
|
|
|
|
SeasonNumber == 0 ||
|
|
|
|
|
|
|
|
String.IsNullOrWhiteSpace(SeriesTitle)
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
public override string ToString()
|
|
|
|