mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 13:16:16 +00:00
FileList: don't use FL token DL link
This commit is contained in:
parent
289c5cd24f
commit
fbbe4f9c45
1 changed files with 1 additions and 1 deletions
|
@ -165,7 +165,7 @@ namespace Jackett.Indexers
|
|||
release.PublishDate = DateTime.ParseExact(dateStr, "H:mm:ssdd/MM/yyyy zzz", CultureInfo.InvariantCulture);
|
||||
|
||||
var qLink = qRow.Find("a[href^=\"download.php?id=\"]").First();
|
||||
release.Link = new Uri(SiteLink + qLink.Attr("href"));
|
||||
release.Link = new Uri(SiteLink + qLink.Attr("href").Replace("&usetoken=1",""));
|
||||
|
||||
var sizeStr = qRow.Find(".torrenttable:eq(6)").Text().Trim();
|
||||
release.Size = ReleaseInfo.GetBytes(sizeStr);
|
||||
|
|
Loading…
Reference in a new issue