From 0e3baba110ca95f552b67775cb932be3d3039b07 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Sat, 10 Mar 2018 19:09:00 +0100 Subject: [PATCH] TorrentSyndikat: avoid double slash in comments URL --- src/Jackett.Common/Indexers/TorrentSyndikat.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/TorrentSyndikat.cs b/src/Jackett.Common/Indexers/TorrentSyndikat.cs index f3f0bf8cf..d609856b1 100644 --- a/src/Jackett.Common/Indexers/TorrentSyndikat.cs +++ b/src/Jackett.Common/Indexers/TorrentSyndikat.cs @@ -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();