mirror of
https://github.com/Radarr/Radarr
synced 2026-05-09 11:10:23 +02:00
Fixed PTP indexer being disabled if no results are found for a movie.
Fixes #1573
This commit is contained in:
parent
811a4bf117
commit
b7f6ff7b2e
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ public IList<ReleaseInfo> ParseResponse(IndexerResponse indexerResponse)
|
||||||
jsonResponse.TotalResults.IsNullOrWhiteSpace() ||
|
jsonResponse.TotalResults.IsNullOrWhiteSpace() ||
|
||||||
jsonResponse.Movies == null)
|
jsonResponse.Movies == null)
|
||||||
{
|
{
|
||||||
throw new IndexerException(indexerResponse, "No results were found");
|
return torrentInfos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue