mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
mejortorrent: ignore first row in serie episodes table. resolves #11397
This commit is contained in:
@@ -307,7 +307,7 @@ namespace Jackett.Common.Indexers
|
|||||||
foreach (var row in rows)
|
foreach (var row in rows)
|
||||||
{
|
{
|
||||||
var anchor = row.QuerySelector("a");
|
var anchor = row.QuerySelector("a");
|
||||||
if (anchor == null)
|
if (anchor == null || anchor.GetAttribute("href") == "#abajo")
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
var episodeTitle = anchor.TextContent.Trim();
|
var episodeTitle = anchor.TextContent.Trim();
|
||||||
|
Reference in New Issue
Block a user