mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-02 16:52:04 +02:00
Fixes for code review
This commit is contained in:
@@ -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()
|
||||
|
Reference in New Issue
Block a user