mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-22 15:54:36 +00:00
Fix torrent blacklisting when InfoHash is available
This commit is contained in:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user