TorrentSyndikat: avoid double slash in comments URL

This commit is contained in:
kaso17 2018-03-10 19:09:00 +01:00
parent c2e7282bd3
commit 0e3baba110
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ namespace Jackett.Common.Indexers
var torrentTags = torrentTag.Elements.Select(x => x.InnerHTML).ToList();
release.Title = qCommentLink.Attr("title");
release.Description = String.Join(", ", torrentTags);
release.Comments = new Uri(SiteLink + "/" + qCommentLink.Attr("href").Replace("&hit=1", ""));
release.Comments = new Uri(SiteLink + qCommentLink.Attr("href").Replace("&hit=1", ""));
release.Guid = release.Comments;
var torrent_details = descCol.ChildElements.Last();