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
@@ -24,7 +24,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public virtual string SearchQuery => $"Term: [{SearchTerm}]";
public virtual bool RssSearch => SearchTerm.IsNullOrWhiteSpace();
public virtual bool IsRssSearch => SearchTerm.IsNullOrWhiteSpace();
public string SanitizedSearchTerm => GetSanitizedTerm(SearchTerm);