Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/d4422e8901f1721caeabcc54c28568fd9b139c79
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
3 deletions
@ -52,10 +52,13 @@ namespace NzbDrone.Core.MetadataSource.SkyHook
public HashSet < int > GetChangedMovies ( DateTime startTime )
{
var startDate = startTime . ToString ( "o" ) ;
var request = _movieBuilder . Create ( )
. SetSegment ( "route" , "movie" )
. SetSegment ( "id" , "" )
. SetSegment ( "secondaryRoute" , "changes" )
. AddQueryParam ( "start_date" , startDate )
. Build ( ) ;
request . AllowAutoRedirect = true ;
@ -220,10 +220,9 @@ namespace NzbDrone.Core.Movies
var updatedTMDBMovies = new HashSet < int > ( ) ;
if ( message . Last ExecutionTime. HasValue & & message . LastExecution Time. Value . AddDays ( 14 ) > DateTime . UtcNow )
if ( message . Last StartTime. HasValue & & message . LastStart Time. Value . AddDays ( 14 ) > DateTime . UtcNow )
{
// TODO: Should we add some overlap to ensure we get everything?
updatedTMDBMovies = _movieInfo . GetChangedMovies ( message . LastExecutionTime . Value ) ;
updatedTMDBMovies = _movieInfo . GetChangedMovies ( message . LastStartTime . Value ) ;
}
foreach ( var movie in allMovie )