mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
parent
3cd459ef32
commit
1c34303f58
1 changed files with 3 additions and 0 deletions
|
@ -191,6 +191,9 @@ namespace Jackett.Common.Indexers
|
|||
foreach (var row in rows.Skip(1))
|
||||
{
|
||||
var qTitleLink = row.QuerySelector("a[href^=\"/details.php?id=\"]");
|
||||
if (qTitleLink == null) // no results
|
||||
continue;
|
||||
|
||||
// drop invalid char that seems to have cropped up in some titles. #6582
|
||||
var title = qTitleLink.TextContent.Trim().Replace("\u000f", "");
|
||||
var comments = new Uri(SiteLink + qTitleLink.GetAttribute("href").TrimStart('/'));
|
||||
|
|
Loading…
Reference in a new issue