mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 05:22:14 -07:00
Fix checking for SameTorrent when the indexer is null
(cherry picked from commit 3ece1533d86c559ec1bf7689c908802f31e38e91)
This commit is contained in:
parent
64d32645e0
commit
ea82c4f105
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ namespace NzbDrone.Core.Blocklisting
|
||||||
return release.InfoHash.Equals(item.TorrentInfoHash);
|
return release.InfoHash.Equals(item.TorrentInfoHash);
|
||||||
}
|
}
|
||||||
|
|
||||||
return item.Indexer.Equals(release.Indexer, StringComparison.InvariantCultureIgnoreCase);
|
return HasSameIndexer(item, release.Indexer);
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool HasSameIndexer(Blocklist item, string indexer)
|
private bool HasSameIndexer(Blocklist item, string indexer)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue