1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-17 21:26:13 -04:00

Fixed: Nyaa episode title search

This commit is contained in:
Albert Lee
2022-08-19 02:26:09 -04:00
committed by GitHub
parent 6660e0c3f3
commit 19c9429c7e

View File

@@ -91,9 +91,7 @@ namespace NzbDrone.Core.Indexers.Nyaa
foreach (var queryTitle in searchCriteria.EpisodeQueryTitles)
{
pageableRequests.Add(GetPagedRequests(MaxPages,
string.Format("&term={0}",
PrepareQuery(queryTitle))));
pageableRequests.Add(GetPagedRequests(MaxPages, PrepareQuery(queryTitle)));
}
return pageableRequests;