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

Fixed an error when searching for movies with no imdbid.

Leonardo Galli 8 years ago committed by GitHub
parent 43a71da0a7
commit 6deefbb997

@ -52,7 +52,7 @@ namespace NzbDrone.Core.Indexers.Newznab
{
var pageableRequests = new IndexerPageableRequestChain();
if (SupportsMovieSearch)
if (SupportsMovieSearch && searchCriteria.Movie.ImdbId.IsNotNullOrWhitespace())
{
pageableRequests.Add(GetPagedRequests(MaxPages, Settings.Categories, "movie", $"&imdbid={searchCriteria.Movie.ImdbId.Substring(2)}"));
}

Loading…
Cancel
Save