Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/2e81e278e1131f38dfc4ea10a8297672f4b1eb92?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -61,7 +61,7 @@ namespace NzbDrone.Core.Download
var downloadClient = _downloadClientProvider . Get ( trackedDownload . DownloadClient ) ;
try
{
_logger . Debug ( "[{0}] Removing download from {1} history" , trackedDownload . DownloadItem . DownloadClient) ;
_logger . Debug ( "[{0}] Removing download from {1} history" , trackedDownload . DownloadItem . Title, trackedDownload . DownloadItem . DownloadClient) ;
downloadClient . RemoveItem ( trackedDownload . DownloadItem . DownloadId , true ) ;
trackedDownload . DownloadItem . Removed = true ;
}
@ -69,7 +69,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
if ( runTime . TotalSeconds < minimumRuntime )
{
_logger . Debug ( "[{0}] appears to be a sample. Runtime: {1} seconds. Expected at least: { 1 } seconds", path , runTime , minimumRuntime ) ;
_logger . Debug ( "[{0}] appears to be a sample. Runtime: {1} seconds. Expected at least: { 2 } seconds", path , runTime , minimumRuntime ) ;
return true ;
}
}
@ -344,7 +344,7 @@ namespace NzbDrone.Core.Parser
info . Language = Parser . ParseLanguage ( title ) ;
info . Special = true ;
_logger . Info ( "Found special episode {0} for title '{1}'" , info , title ) ;
_logger . Debug ( "Found special episode {0} for title '{1}'" , info , title ) ;
return info ;
}