mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
RevTT: added files count (#3213)
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
@@ -118,4 +118,4 @@ namespace Jackett.Common.Utils
|
|||||||
return "tt" + ((int)imdbid).ToString("D7");
|
return "tt" + ((int)imdbid).ToString("D7");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user