Fixes for code review

This commit is contained in:
Icer Addis
2014-01-13 21:20:29 -08:00
parent c459cdf168
commit 2dbf0ecc82
2 changed files with 7 additions and 13 deletions

View File

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