1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-21 21:57:27 +00: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 @@ namespace NzbDrone.Core.Blacklisting
.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));
}