TorrentLeech: fix DL link

This commit is contained in:
kaso17 2016-12-11 16:41:02 +01:00
parent a854771950
commit adbd6c9d0d
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ namespace Jackett.Indexers
release.Title = qLink.Text();
release.Description = release.Title;
release.Link = new Uri(SiteLink + qRow.Find(".quickdownload > a").Attr("href").Substring(1));
release.Link = new Uri(qRow.Find(".quickdownload > a").Attr("href"));
var dateString = qRow.Find(".name").Get(0).LastChild.NodeValue.Replace("on", string.Empty).Trim(); ;
release.PublishDate = DateTime.ParseExact(dateString, "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);