mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 06:10:49 +00:00
torrentleech: check tags for freeleech. resolves #6579
This commit is contained in:
parent
9c22679b41
commit
226fdfd03c
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue