mirror of https://github.com/Sonarr/Sonarr
Fix checking for SameTorrent when the indexer is null
This commit is contained in:
parent
f32a3cd41c
commit
3ece1533d8
|
@ -125,7 +125,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…
Reference in New Issue