Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ca03f21b03da8be1ca745dc9dd158d334eb6dc17
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
16 additions and
0 deletions
@ -156,6 +156,22 @@ namespace NzbDrone.Core.Download
return ;
}
}
else
{
if ( movie . MovieFile ! = null )
{
movie . MovieFile . LazyLoad ( ) ;
if ( movie . MovieFile . Value ! = null )
{
_logger . Debug ( "File Title: {0}, download item title: {1}" , Parser . Parser . CleanSeriesTitle ( movie . MovieFile . Value . RelativePath ) , Parser . Parser . CleanSeriesTitle ( trackedDownload . DownloadItem . Title ) ) ;
if ( Parser . Parser . CleanSeriesTitle ( movie . MovieFile . Value . RelativePath ) . Contains ( Parser . Parser . CleanSeriesTitle ( trackedDownload . DownloadItem . Title ) ) )
{
trackedDownload . Warn ( "Seems like the movie already has a file associated with this download item. Maybe the History failed?" ) ;
return ;
}
}
}
}
//trackedDownload.Warn("Series title mismatch, automatic import is not possible.");
//return;
}