Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/e5c81eefd2e34c6c5dc47464f899e80971769338 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from onedr0p/develop

Instead of searching for imdbid (which jackett may or may not have depending on the tracker) search for a word instead.
pull/37/head
Leonardo Galli 8 years ago committed by GitHub
commit e5c81eefd2

@ -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());
}

Loading…
Cancel
Save