Merge pull request #1 from onedr0p/onedr0p-patch-1

Update TorrentPotatoRequestGenerator.cs
This commit is contained in:
Devin Buhl 2017-01-06 15:27:33 -05:00 committed by GitHub
commit f7fb238fb4
1 changed files with 2 additions and 3 deletions

View File

@ -79,9 +79,8 @@ namespace NzbDrone.Core.Indexers.TorrentPotato
requestBuilder.AddQueryParam("passkey", Settings.Passkey);
requestBuilder.AddQueryParam("user", Settings.User);
requestBuilder.AddQueryParam("imdbid", "tt0076759"); //For now just search for Star Wars.
// requestBuilder.AddQueryParam("imdbid", "tt0076759"); //For now just search for Star Wars.
requestBuilder.AddQueryParam("search", "the"); // there has to be movies with 'the' in the title on any indexer
yield return new IndexerRequest(requestBuilder.Build());
}