Fixed PTP indexer being disabled if no results are found for a movie.

Fixes #1573
pull/1226/merge
Leonardo Galli 7 years ago
parent 811a4bf117
commit b7f6ff7b2e

@ -45,7 +45,7 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn
jsonResponse.TotalResults.IsNullOrWhiteSpace() ||
jsonResponse.Movies == null)
{
throw new IndexerException(indexerResponse, "No results were found");
return torrentInfos;
}

Loading…
Cancel
Save