From c5b9ea51e38bc7fdf0eab6fa81884cd0b44e5f0c Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 10 Aug 2024 20:37:58 -0700 Subject: [PATCH] fixup! Fixed: Marking queued item as failed not blocking the correct Torrent Info Hash --- src/NzbDrone.Core/Blocklisting/BlocklistService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Blocklisting/BlocklistService.cs b/src/NzbDrone.Core/Blocklisting/BlocklistService.cs index 708b62f5a..f6aa6ceef 100644 --- a/src/NzbDrone.Core/Blocklisting/BlocklistService.cs +++ b/src/NzbDrone.Core/Blocklisting/BlocklistService.cs @@ -200,6 +200,8 @@ namespace NzbDrone.Core.Blocklisting { blocklist.ReleaseType = releaseType; } + + _blocklistRepository.Insert(blocklist); } public void HandleAsync(SeriesDeletedEvent message)