brasiltracker: update freeleech selector

This commit is contained in:
ilike2burnthing 2023-05-08 06:41:17 +01:00 committed by GitHub
parent 0cffd5a181
commit 3beb406eed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ namespace Jackett.Common.Indexers
var qGrabs = row.QuerySelector("td:nth-last-child(3)");
var qSeeders = row.QuerySelector("td:nth-last-child(2)");
var qLeechers = row.QuerySelector("td:nth-last-child(1)");
var qFreeLeech = row.QuerySelector("strong[title=\"Free\"]");
var qFreeLeech = row.QuerySelector("strong:contains(\"Free\")");
if (row.ClassList.Contains("group_torrent")) // torrents belonging to a group
{
release.Description = qDetailsLink.TextContent;