mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
TorrentSyndikat: avoid double slash in comments URL
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user