Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/44842a4e6bf5823e3b003421912c62bfc840fb61
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
14 additions and
0 deletions
@ -44,6 +44,20 @@ namespace NzbDrone.Core.Download.TrackedDownloads
public TrackedDownload TrackDownload ( DownloadClientDefinition downloadClient , DownloadClientItem downloadItem )
{
if ( downloadItem . DownloadId . IsNullOrWhiteSpace ( ) )
{
_logger . Warn ( "The following download client item ({0}) has no download hash (id), so it cannot be tracked: {1}" ,
downloadClient . Name , downloadItem . Title ) ;
return null ;
}
if ( downloadItem . Title . IsNullOrWhiteSpace ( ) )
{
_logger . Warn ( "The following download client item ({0}) has no title so it cannot be tracked: {1}" ,
downloadClient . Name , downloadItem . Title ) ;
return null ;
}
var existingItem = Find ( downloadItem . DownloadId ) ;
if ( existingItem ! = null & & existingItem . State ! = TrackedDownloadStage . Downloading )