Revert "Revert "rutracker: amend seeders selector. resolves #6014""

This reverts commit c9c58f5440.
This commit is contained in:
Garfield69 2019-09-19 17:22:23 +12:00
parent c9c58f5440
commit 853e98f949
1 changed files with 1 additions and 1 deletions

View File

@ -1559,7 +1559,7 @@ namespace Jackett.Common.Indexers
release.Guid = release.Comments;
release.Size = ReleaseInfo.GetBytes(qSize.GetAttribute("data-ts_text"));
var seeders = Row.QuerySelector("td:nth-child(7)").TextContent;
var seeders = Row.QuerySelector("td:nth-child(7) b").TextContent;
if (string.IsNullOrWhiteSpace(seeders))
seeders = "0";
release.Seeders = ParseUtil.CoerceInt(seeders);