mirror of
https://github.com/Jackett/Jackett
synced 2025-01-04 06:22:45 +00:00
parent
b62d6401e6
commit
9e3ecaee1f
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Specialized;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Text.RegularExpressions;
|
||||
|
@ -191,7 +192,7 @@ namespace Jackett.Common.Indexers
|
|||
var qDetailsLink = row.QuerySelector("a[href^=\"index.php?strWebValue=torrent&strWebAction=details\"]");
|
||||
var qCatLink = row.QuerySelector("a[href^=\"index.php?strWebValue=torrent&strWebAction=search&dir=\"]");
|
||||
var qDlLink = row.QuerySelector("a[href^=\"index.php?strWebValue=torrent&strWebAction=download&id=\"]");
|
||||
var qSeeders = row.QuerySelectorAll("td.column1")[3];
|
||||
var qSeeders = row.QuerySelectorAll("td.column1")[2];
|
||||
var qLeechers = row.QuerySelectorAll("td.column2")[3];
|
||||
var qDateStr = row.QuerySelector("font:has(a)");
|
||||
var qSize = row.QuerySelector("td.column2[align=center]");
|
||||
|
|
Loading…
Reference in a new issue