TorrentSyndikat: use long title

This commit is contained in:
kaso17 2016-12-26 15:52:26 +01:00
parent 60a2ffbe41
commit 4f9ce14e2f
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ namespace Jackett.Indexers
var qCommentLink = descCol.FirstElementChild.Cq();
var torrentTag = descCol.Cq().Find("span.torrent-tag");
var torrentTags = torrentTag.Elements.Select(x => x.InnerHTML).ToList();
release.Title = qCommentLink.Text();
release.Title = qCommentLink.Attr("title");
release.Description = String.Join(", ", torrentTags);
release.Comments = new Uri(SiteLink + "/" + qCommentLink.Attr("href").Replace("&hit=1", ""));
release.Guid = release.Comments;