mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
Fixed: Manually marking a release as failed will now also remove it from the queue in drone and, if enabled, remove it from the download client.
This commit is contained in:
parent
839a2ac742
commit
1a6abfe635
2 changed files with 26 additions and 14 deletions
|
@ -77,7 +77,7 @@ namespace NzbDrone.Core.Download
|
|||
{
|
||||
trackedDownload.State = TrackedDownloadState.Imported;
|
||||
|
||||
_logger.Debug("Already added to history as imported: " + trackedDownload.DownloadItem.Title);
|
||||
_logger.Trace("Already added to history as imported: " + trackedDownload.DownloadItem.Title);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -137,13 +137,13 @@ namespace NzbDrone.Core.Download
|
|||
importedItems.First().Data[DownloadTrackingService.DOWNLOAD_CLIENT_ID] = grabbedItems.First().Data[DownloadTrackingService.DOWNLOAD_CLIENT_ID];
|
||||
_historyService.UpdateHistoryData(importedItems.First().Id, importedItems.First().Data);
|
||||
|
||||
_logger.Debug("Storage path does not exist, but found probable drone factory ImportEvent: " + trackedDownload.DownloadItem.Title);
|
||||
_logger.Trace("Storage path does not exist, but found probable drone factory ImportEvent: " + trackedDownload.DownloadItem.Title);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
_logger.Debug("Storage path does not exist: " + trackedDownload.DownloadItem.Title);
|
||||
_logger.Trace("Storage path does not exist: " + trackedDownload.DownloadItem.Title);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue