mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 00:34:37 +02: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