From bb89fb08677c3e4e0448622a4124b125a8078dc1 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 5 Oct 2021 12:09:33 -0700 Subject: [PATCH] Fixed: Use unmodified titles when searching Nyaa Towards #1225 --- src/NzbDrone.Core/Indexers/Nyaa/NyaaRequestGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Nyaa/NyaaRequestGenerator.cs b/src/NzbDrone.Core/Indexers/Nyaa/NyaaRequestGenerator.cs index 3cf917e72..8b8e3c93d 100644 --- a/src/NzbDrone.Core/Indexers/Nyaa/NyaaRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/Nyaa/NyaaRequestGenerator.cs @@ -50,7 +50,7 @@ namespace NzbDrone.Core.Indexers.Nyaa { var pageableRequests = new IndexerPageableRequestChain(); - foreach (var queryTitle in searchCriteria.CleanSceneTitles) + foreach (var queryTitle in searchCriteria.SceneTitles) { var searchTitle = PrepareQuery(queryTitle);