Fix TorrentLeech (#599)

This commit is contained in:
kaso17 2016-10-30 13:21:32 +01:00 committed by GitHub
parent 64bed2a8b3
commit 0a577e64d1
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ namespace Jackett.Indexers
var category = qRow.Find(".category a").Attr("href").Replace("/torrents/browse/index/categories/", string.Empty);
release.Category = MapTrackerCatToNewznab(category);
var grabs = qRow.Find("td:nth-child(5)").Get(0).FirstChild.ToString();
var grabs = qRow.Find("td:nth-child(6)").Get(0).FirstChild.ToString();
release.Grabs = ParseUtil.CoerceInt(grabs);
release.DownloadVolumeFactor = 1;