mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
torrentleech: check tags for freeleech. resolves #6579
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user