Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/c862fd9ff6f58f0e3e1f11219eec98591b956f7f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
15 deletions
@ -33,14 +33,6 @@ namespace NzbDrone.Core.Download
_logger = logger ;
}
private void RemoveCompletedDownloads ( List < TrackedDownload > trackedDownloads )
{
foreach ( var trackedDownload in trackedDownloads . Where ( c = > c . DownloadItem . CanBeRemoved & & c . State = = TrackedDownloadState . Imported ) )
{
_eventAggregator . PublishEvent ( new DownloadCompletedEvent ( trackedDownload ) ) ;
}
}
public void Execute ( ProcessMonitoredDownloadsCommand message )
{
var enableCompletedDownloadHandling = _configService . EnableCompletedDownloadHandling ;
@ -64,13 +56,6 @@ namespace NzbDrone.Core.Download
{
_logger . Debug ( e , "Failed to process download: {0}" , trackedDownload . DownloadItem . Title ) ;
}
}
if ( enableCompletedDownloadHandling & & _configService . RemoveCompletedDownloads )
{
// Remove tracked downloads that are now complete
RemoveCompletedDownloads ( trackedDownloads ) ;
}
_eventAggregator . PublishEvent ( new DownloadsProcessedEvent ( ) ) ;