xspeeds: site changed title layout. resoves #7975

This commit is contained in:
Garfield69 2020-04-02 11:16:46 +13:00
parent 5cfa72361b
commit ef82fc136b
1 changed files with 3 additions and 5 deletions

View File

@ -324,10 +324,8 @@ namespace Jackett.Common.Indexers
{
var release = new ReleaseInfo();
var qDetails = row.QuerySelector("div > a[href*=\"details.php?id=\"]"); // details link, release name get's shortened if it's to long
var qTitle =
row.QuerySelector("td:nth-of-type(2) .tooltip-content div:nth-of-type(1)") // use Title from tooltip
?? qDetails; // fallback to Details link if there's no tooltip
var qDetails = row.QuerySelector("div > a[href*=\"details.php?id=\"]");
var qTitle = qDetails; // #7975
release.Title = qTitle.TextContent;