1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

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

Fixes #1573
This commit is contained in:
Leonardo Galli 2017-05-26 11:12:07 +02:00
parent 811a4bf117
commit b7f6ff7b2e

View File

@ -45,7 +45,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
jsonResponse.TotalResults.IsNullOrWhiteSpace() ||
jsonResponse.Movies == null)
{
throw new IndexerException(indexerResponse, "No results were found");
return torrentInfos;
}