mirror of
https://github.com/Jackett/Jackett
synced 2025-02-23 14:51:01 +00:00
TorrentSyndikat: avoid double slash in comments URL
This commit is contained in:
parent
c2e7282bd3
commit
0e3baba110
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue