1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-21 22:07:10 +00:00

torrentleech: check tags for freeleech. resolves #6579

This commit is contained in:
Garfield69 2019-12-11 20:33:27 +13:00
parent 9c22679b41
commit 226fdfd03c

View file

@ -248,6 +248,11 @@ namespace Jackett.Common.Indexers
release.DownloadVolumeFactor = 1;
release.UploadVolumeFactor = 1;
// look at tags for freeleech #6579
// "tags": ["comedy","Family","FREELEECH"],
if (torrent.tags.ToString().Contains("FREELEECH"))
release.DownloadVolumeFactor = 0;
releases.Add(release);
}
}