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

Fixed matching wrong movies from database when searching.

Leonardo Galli 8 years ago
parent 70c8228605
commit 6d5e9ad4a1

@ -387,7 +387,17 @@ namespace NzbDrone.Core.Parser
}
Movie movie = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle); //Todo: same as above!
Movie movie = null;
if (searchCriteria == null)
{
movie = _movieService.FindByTitle(parsedEpisodeInfo.MovieTitle); //Todo: same as above!
return movie;
}
if (movie == null && imdbId.IsNotNullOrWhiteSpace())
{

Loading…
Cancel
Save