From 257295ed089d6a303e7de3b192e9f00a7d229a87 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Sun, 25 Mar 2018 17:21:40 +0200 Subject: [PATCH] TorrentLeech: fix download link --- 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 6eca27713..355806159 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(qRow.Find(".quickdownload > a").Attr("href")); + release.Link = 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);