Fixed: Non-Freeleech torrents showing as freeleech for AHD.

This commit is contained in:
Leonardo Galli 2017-08-15 23:22:00 +02:00
parent b06108fb45
commit 285ffb19d8
1 changed files with 6 additions and 1 deletions

View File

@ -71,11 +71,16 @@ namespace NzbDrone.Core.Indexers.AwesomeHD
var title = $"{torrent.Name}.{torrent.Year}.{torrent.Resolution}.{torrent.Media}.{torrent.Encoding}.{torrent.AudioFormat}-{torrent.ReleaseGroup}";
IndexerFlags flags = 0;
if (torrent.Freeleech == "1.00")
if (torrent.Freeleech == "0.00" || torrent.Freeleech == "0.25")
{
flags |= IndexerFlags.G_Freeleech;
}
if (torrent.Freeleech == "0.50")
{
flags |= IndexerFlags.G_Halfleech;
}
torrentInfos.Add(new TorrentInfo()
{
Guid = string.Format("AwesomeHD-{0}", id),