Fix torrentless magnet links failing on the torrentpotato endpoint #157

This commit is contained in:
KZ 2015-08-26 19:38:50 +01:00
parent 116a9026a0
commit 1fa36925ad
1 changed files with 167 additions and 163 deletions

View File

@ -128,6 +128,9 @@ namespace Jackett.Controllers
var release = Mapper.Map<ReleaseInfo>(r);
release.Link = serverService.ConvertToProxyLink(release.Link, serverUrl, indexerID);
// Only accept torrent links, magnet is not supported
if (release.Link != null)
{
potatoResponse.results.Add(new TorrentPotatoResponseItem()
{
release_name = release.Title + "[" + indexer.DisplayName + "]", // Suffix the indexer so we can see which tracker we are using in CPS as it just says torrentpotato >.>
@ -137,11 +140,12 @@ namespace Jackett.Controllers
imdb_id = release.Imdb.HasValue ? "tt" + release.Imdb : null,
freeleech = false,
type = "movie",
size = (long)release.Size/ (1024 * 1024), // This is in MB
size = (long)release.Size / (1024 * 1024), // This is in MB
leechers = (int)release.Peers - (int)release.Seeders,
seeders = (int)release.Seeders
});
}
}
// Log info
if (string.IsNullOrWhiteSpace(torznabQuery.SanitizedSearchTerm))