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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

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;