1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

View File

@ -71,11 +71,16 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
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),