Skip to content

Commit

Permalink
torrentheaven: new layout. resolves #9726 (#9740)
Browse files Browse the repository at this point in the history
  • Loading branch information
ngosang committed Oct 4, 2020
1 parent 68b4393 commit fca2e06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Jackett.Common/Indexers/TorrentHeaven.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,10 @@ protected override async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuer
downloadFactor = 1;
var title = titleRegexp.Match(qDetailsLink.GetAttribute("onmouseover")).Groups[1].Value;
var comments = new Uri(SiteLink + qDetailsLink.GetAttribute("href"));
var size = ReleaseInfo.GetBytes(qColumn2[1].TextContent);
var seeders = ParseUtil.CoerceInt(qColumn1[3].TextContent);
var leechers = ParseUtil.CoerceInt(qColumn2[3].TextContent);
var grabs = ParseUtil.CoerceInt(qColumn2[2].TextContent);
var size = ReleaseInfo.GetBytes(qColumn1[1].TextContent);
var seeders = ParseUtil.CoerceInt(qColumn2[2].TextContent);
var leechers = ParseUtil.CoerceInt(qColumn1[3].TextContent);
var grabs = ParseUtil.CoerceInt(qColumn1[2].TextContent);
var publishDate = TimeZoneInfo.ConvertTime(dateGerman, germanyTz, TimeZoneInfo.Local);

var release = new ReleaseInfo
Expand Down

0 comments on commit fca2e06

Please sign in to comment.