Bit-City Reloaded: fix category mapping

This commit is contained in:
kaso17 2016-12-29 12:39:42 +01:00
parent 37591c6da6
commit 42eb68ba76
1 changed files with 0 additions and 3 deletions

View File

@ -172,9 +172,6 @@ namespace Jackett.Indexers
var catId = qRow.Find("td:eq(0) a").First().Attr("href").Split('=')[1];
release.Category = MapTrackerCatToNewznab(catId);
var cat = qRow.Find("td:eq(0) a").First().Attr("href").Substring(1);
release.Category = MapTrackerCatToNewznab(cat);
var files = qRow.Find("td:has(a[href*=\"&filelist=1\"])> b:nth-child(2)").Text();
release.Files = ParseUtil.CoerceInt(files);