mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Add new attributes to various trackers (#583)
* Use AvistazTracker base
* Revert "Use AvistazTracker base"
This reverts commit 9eba02c758
.
* Add new attributes to various trackers
* more DL factors for HDSpace
* new attributes for Fuzer
* add new attributes for ImmortalSeed
* set UploadVolumeFactor for myAmity
* add new attributes to bitmetv
This commit is contained in:
@@ -129,6 +129,15 @@ namespace Jackett.Indexers
|
||||
//if (!release.Title.ToLower().Contains(title.ToLower()))
|
||||
// continue;
|
||||
|
||||
var files = row.Cq().Find("td:nth-child(4)").Text();
|
||||
release.Files = ParseUtil.CoerceInt(files);
|
||||
|
||||
var grabs = row.Cq().Find("td:nth-child(8)").Get(0).FirstChild.ToString();
|
||||
release.Grabs = ParseUtil.CoerceInt(grabs);
|
||||
|
||||
release.DownloadVolumeFactor = 1;
|
||||
release.UploadVolumeFactor = 1;
|
||||
|
||||
releases.Add(release);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user