From 6b5bc25f3540c21e0a8cb2b14c55f04d9d6ecaf6 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 20 Aug 2023 15:25:50 -0500 Subject: [PATCH] Fixed: Ignore case when comparing torrent infohash (cherry picked from commit 7986488c6d1687b0810b3bcac2c1dae725e770ac) --- src/NzbDrone.Core/Blocklisting/BlocklistService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Blocklisting/BlocklistService.cs b/src/NzbDrone.Core/Blocklisting/BlocklistService.cs index 074fea7a9..707147b73 100644 --- a/src/NzbDrone.Core/Blocklisting/BlocklistService.cs +++ b/src/NzbDrone.Core/Blocklisting/BlocklistService.cs @@ -97,7 +97,7 @@ namespace NzbDrone.Core.Blocklisting { if (release.InfoHash.IsNotNullOrWhiteSpace()) { - return release.InfoHash.Equals(item.TorrentInfoHash); + return release.InfoHash.Equals(item.TorrentInfoHash, StringComparison.InvariantCultureIgnoreCase); } return HasSameIndexer(item, release.Indexer);