1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Optional message for marking as failed via API

Closes #7775
This commit is contained in:
Mark McDowall
2025-09-29 20:46:07 -07:00
parent 858c690543
commit a5ea19ddfb
19 changed files with 121 additions and 29 deletions
+2 -2
View File
@@ -323,7 +323,7 @@ namespace Sonarr.Api.V3.Queue
{
if (blocklist)
{
_blocklistService.Block(pendingRelease.RemoteEpisode, "Pending release manually blocklisted");
_blocklistService.Block(pendingRelease.RemoteEpisode, "Pending release manually blocklisted", null);
}
_pendingReleaseService.RemovePendingQueueItemsObsolete(pendingRelease.Id);
@@ -356,7 +356,7 @@ namespace Sonarr.Api.V3.Queue
if (blocklist)
{
_failedDownloadService.MarkAsFailed(trackedDownload, skipRedownload);
_failedDownloadService.MarkAsFailed(trackedDownload, null, null, skipRedownload);
}
if (!removeFromClient && !blocklist && !changeCategory)