1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fix torrent blacklisting when InfoHash is available

This commit is contained in:
Mark McDowall 2015-05-17 16:20:51 -07:00
parent 475f4244c4
commit 7c246abc88

View File

@ -46,7 +46,7 @@ public bool Blacklisted(int seriesId, ReleaseInfo release)
.Any(b => SameTorrent(b, torrentInfo));
}
var blacklistedByTorrentInfohash = _blacklistRepository.BlacklistedByTitle(seriesId, torrentInfo.InfoHash);
var blacklistedByTorrentInfohash = _blacklistRepository.BlacklistedByTorrentInfoHash(seriesId, torrentInfo.InfoHash);
return blacklistedByTorrentInfohash.Any(b => SameTorrent(b, torrentInfo));
}