mirror of
https://github.com/Jackett/Jackett
synced 2024-12-27 18:29:47 +00:00
TorrentLeech: fix download link
This commit is contained in:
parent
57fc97dff7
commit
257295ed08
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue