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 >.>
@ -142,6 +145,7 @@ namespace Jackett.Controllers
seeders = (int)release.Seeders
});
}
}
// Log info
if (string.IsNullOrWhiteSpace(torznabQuery.SanitizedSearchTerm))