From 5af3eaa926712ea716614e5383cdb1c04387bea2 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Wed, 9 Jan 2019 19:38:43 +0100 Subject: [PATCH] TorrentDay: fix download --- src/Jackett.Common/Indexers/TorrentDay.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/TorrentDay.cs b/src/Jackett.Common/Indexers/TorrentDay.cs index d00207ad7..311bea98a 100644 --- a/src/Jackett.Common/Indexers/TorrentDay.cs +++ b/src/Jackett.Common/Indexers/TorrentDay.cs @@ -238,7 +238,7 @@ namespace Jackett.Common.Indexers var torrentID = (long)torrent.t; release.Comments = new Uri(SiteLink + "details.php?id=" + torrentID); release.Guid = release.Comments; - release.Link = new Uri(SiteLink + "download.php/" + torrentID + "/dummy.torrent"); + release.Link = new Uri(SiteLink + "download.php/" + torrentID + "/"+ torrentID + ".torrent"); release.PublishDate = DateTimeUtil.UnixTimestampToDateTime((long)torrent.ctime).ToLocalTime(); release.Size = (long)torrent.size;