mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-04-24 06:17:08 -04:00
Fix checking for SameTorrent when the indexer is null
This commit is contained in:
parent
f32a3cd41c
commit
3ece1533d8
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ namespace NzbDrone.Core.Blocklisting
|
|||
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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue