Abnormal: fix size 0 issue (#13084)

This commit is contained in:
Bright-W
2022-03-25 12:25:52 +08:00
committed by GitHub
parent e47d2b1961
commit 4773e3bc4c

View File

@@ -252,7 +252,7 @@ namespace Jackett.Common.Indexers
var completed = torrent.QuerySelector("td:nth-of-type(3)").TextContent; // Completed
var seeders = torrent.QuerySelector("td.text-green").TextContent; // Seeders
var leechers = torrent.QuerySelector("td.text-red").TextContent; // Leechers
var size = torrent.QuerySelector("td:nth-of-type(5)").TextContent; // Size
var size = torrent.QuerySelector("td:nth-of-type(6)").TextContent; // Size
var release = new ReleaseInfo
{