torrentheaven: fix parse errors caused by #7387

This commit is contained in:
Garfield69 2020-03-02 20:45:31 +13:00
parent 9826e2c2af
commit 012f3d1bbc
1 changed files with 3 additions and 3 deletions

View File

@ -206,11 +206,11 @@ namespace Jackett.Common.Indexers
release.MinimumSeedTime = 0;
var qDetailsLink = row.QuerySelector("a[href^=index.php?strWebValue=torrent&strWebAction=details]");
var qDetailsLink = row.QuerySelector("a[href^=\"index.php?strWebValue=torrent&strWebAction=details\"]");
release.Title = TitleRegexp.Match(qDetailsLink.GetAttribute("onmouseover")).Groups[1].Value;
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 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.QuerySelector("td.column1:nth-of-type(4)");
var qLeechers = row.QuerySelector("td.column2:nth-of-type(4)");
var qDateStr = row.QuerySelector("font:has(a)");