mirror of
https://github.com/Lidarr/Lidarr
synced 2026-05-08 12:33:04 +02:00
Fixed: Ignore case when comparing torrent infohash
(cherry picked from commit 7986488c6d1687b0810b3bcac2c1dae725e770ac)
This commit is contained in:
parent
3b384778f8
commit
6b5bc25f35
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,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