RevTT: added files count (#3213)

This commit is contained in:
la55u
2018-06-11 17:36:29 +02:00
committed by kaso17
parent 117a670aa3
commit 635e8240d2
2 changed files with 4 additions and 1 deletions

View File

@@ -352,6 +352,9 @@ namespace Jackett.Common.Indexers
var grabsStr = qRow.Find("td:nth-child(8)").Text(); var grabsStr = qRow.Find("td:nth-child(8)").Text();
release.Grabs = ParseUtil.GetLongFromString(grabsStr); release.Grabs = ParseUtil.GetLongFromString(grabsStr);
var filesStr = qRow.Find("td:nth-child(7) > a").Text();
release.Files = ParseUtil.GetLongFromString(filesStr);
var category = qRow.Find(".br_type > a").Attr("href").Replace("browse.php?cat=", string.Empty); var category = qRow.Find(".br_type > a").Attr("href").Replace("browse.php?cat=", string.Empty);
release.Category = MapTrackerCatToNewznab(category); release.Category = MapTrackerCatToNewznab(category);
} }