From a839f7d56f94d2e9a979283a76759098fe86d9eb Mon Sep 17 00:00:00 2001 From: kaso17 Date: Mon, 26 Mar 2018 12:47:32 +0200 Subject: [PATCH] TorrentLeech: fix download link again --- src/Jackett.Common/Indexers/TorrentLeech.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/TorrentLeech.cs b/src/Jackett.Common/Indexers/TorrentLeech.cs index 355806159..3f6413c5a 100644 --- a/src/Jackett.Common/Indexers/TorrentLeech.cs +++ b/src/Jackett.Common/Indexers/TorrentLeech.cs @@ -178,7 +178,7 @@ namespace Jackett.Common.Indexers if (!query.MatchQueryStringAND(release.Title)) continue; - release.Link = new Uri(SiteLink + qRow.Find(".quickdownload > a").Attr("href")); + release.Link = new Uri(new Uri(SiteLink), qRow.Find(".quickdownload > a").Attr("href")); var dateString = qRow.Find("span.addedInLine").Get(0).LastChild.NodeValue.Replace("on", string.Empty).Trim(); ; release.PublishDate = DateTime.ParseExact(dateString, "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);