Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8f79563cf0cc258a9a7b051a34ce2637731df618
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
2 deletions
@ -75,7 +75,7 @@ namespace NzbDrone.Core.DecisionEngine
if ( remoteMovie . Movie = = null )
{
decision = new DownloadDecision ( remoteMovie , new Rejection ( "Unknown movie. Cannot parse release nam e.") ) ;
decision = new DownloadDecision ( remoteMovie , new Rejection ( "Unknown movie. Movie found does not match wanted movi e.") ) ;
}
else
{
@ -403,7 +403,7 @@ namespace NzbDrone.Core.Parser
if ( searchCriteria = = null )
{
if ( parsedMovieInfo . Year > 1 9 00)
if ( parsedMovieInfo . Year > 1 8 00)
{
movie = _movieService . FindByTitle ( parsedMovieInfo . MovieTitle , parsedMovieInfo . Year ) ;
}
@ -424,6 +424,12 @@ namespace NzbDrone.Core.Parser
if ( movie = = null & & imdbId . IsNotNullOrWhiteSpace ( ) )
{
movie = _movieService . FindByImdbId ( imdbId ) ;
//Should fix practically all problems, where indexer is shite at adding correct imdbids to movies.
if ( parsedMovieInfo . Year > 1800 & & parsedMovieInfo . Year ! = movie . Year )
{
movie = null ;
}
}
if ( movie = = null )