mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 07:32:38 +00:00
bB: Add quality to title
This commit is contained in:
parent
2ad44cd79b
commit
d259f3df0d
1 changed files with 4 additions and 1 deletions
|
@ -135,7 +135,6 @@ namespace Jackett.Indexers
|
|||
|
||||
var qLink = row.ChildElements.ElementAt(1).Cq().Children("a")[0].Cq();
|
||||
var linkStr = qLink.Attr("href");
|
||||
release.Title = qLink.Text();
|
||||
release.Comments = new Uri(BaseUrl + "/" + linkStr);
|
||||
release.Guid = release.Comments;
|
||||
|
||||
|
@ -163,6 +162,10 @@ namespace Jackett.Indexers
|
|||
|
||||
release.UploadVolumeFactor = 1;
|
||||
|
||||
var title = qRow.Find("td:nth-child(2)");
|
||||
title.Find("span, strong, div, br").Remove();
|
||||
release.Title = title.Text().Replace(" - ]", "]");
|
||||
|
||||
releases.Add(release);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue