mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
TorrentLeech: fix DL link
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user