Fixed: (IndexerSearch) Update isRss logic for new properties

This commit is contained in:
Qstick
2023-02-19 15:46:47 -06:00
parent af4961e3e6
commit dbc4989a95
7 changed files with 38 additions and 8 deletions
@@ -26,7 +26,17 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public string FullImdbId => ParseUtil.GetFullImdbId(ImdbId);
public override bool RssSearch => SearchTerm.IsNullOrWhiteSpace() && ImdbId.IsNullOrWhiteSpace() && !TvdbId.HasValue && !RId.HasValue && !TraktId.HasValue && !TvMazeId.HasValue;
public override bool IsRssSearch =>
SearchTerm.IsNullOrWhiteSpace() &&
Episode.IsNullOrWhiteSpace() &&
ImdbId.IsNullOrWhiteSpace() &&
!Season.HasValue &&
!TvdbId.HasValue &&
!RId.HasValue &&
!TraktId.HasValue &&
!TvMazeId.HasValue &&
!TmdbId.HasValue &&
!DoubanId.HasValue;
public override string SearchQuery
{