mirror of
https://github.com/Readarr/Readarr
synced 2025-12-30 04:06:53 +01:00
Fixed: Ignore case when comparing torrent infohash
(cherry picked from commit 7986488c6d1687b0810b3bcac2c1dae725e770ac)
This commit is contained in:
parent
9d67c18254
commit
1ad84a7c44
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ private bool SameTorrent(Blocklist item, TorrentInfo release)
|
|||
{
|
||||
if (release.InfoHash.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
return release.InfoHash.Equals(item.TorrentInfoHash);
|
||||
return release.InfoHash.Equals(item.TorrentInfoHash, StringComparison.InvariantCultureIgnoreCase);
|
||||
}
|
||||
|
||||
return HasSameIndexer(item, release.Indexer);
|
||||
|
|
|
|||
Loading…
Reference in a new issue