1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Search for raw and clean titles for Newznab/Torznab indexers that support raw title searching

This commit is contained in:
Mark McDowall
2024-05-27 17:29:29 -07:00
committed by Mark McDowall
parent 9c1f48ebc9
commit 6b08e849b8
2 changed files with 2 additions and 1 deletions
@@ -22,6 +22,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public virtual bool UserInvokedSearch { get; set; }
public virtual bool InteractiveSearch { get; set; }
public List<string> AllSceneTitles => SceneTitles.Concat(CleanSceneTitles).Distinct().ToList();
public List<string> CleanSceneTitles => SceneTitles.Select(GetCleanSceneTitle).Distinct().ToList();
public static string GetCleanSceneTitle(string title)