TorrentDay: fix download

This commit is contained in:
kaso17 2019-01-09 19:38:43 +01:00
parent f79608fe6c
commit 5af3eaa926
1 changed files with 1 additions and 1 deletions

View File

@ -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;