mirror of https://github.com/Jackett/Jackett
torrentscsv: dont use magnet link as details link. resolves #5539
details or comments link are not available in the results, and returning a magnet instead of a details link is contra to user expectations. so we just point to the web site instead. also added a download link to conform to torznab specs.
This commit is contained in:
parent
2df53768ae
commit
70491dfe57
|
@ -129,8 +129,10 @@ namespace Jackett.Common.Indexers {
|
|||
"&tr=udp://tracker.justseed.it:1337/announce";
|
||||
|
||||
release.MagnetUri = new Uri (magnet_uri);
|
||||
release.Comments = release.MagnetUri;
|
||||
// there is no comments or details link so we point to the web site instead
|
||||
release.Comments = new Uri (SiteLink);
|
||||
release.Guid = release.MagnetUri;
|
||||
release.Link = release.MagnetUri;
|
||||
release.InfoHash = torrent.Value<JToken> ("infohash").ToString ();
|
||||
|
||||
// convert unix timestamp to human readable date
|
||||
|
|
Loading…
Reference in New Issue