From b7f6ff7b2e842eafe090ed159b657b724aa22693 Mon Sep 17 00:00:00 2001 From: Leonardo Galli Date: Fri, 26 May 2017 11:12:07 +0200 Subject: [PATCH] Fixed PTP indexer being disabled if no results are found for a movie. Fixes #1573 --- .../Indexers/PassThePopcorn/PassThePopcornParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs index d8baca8fd..8453d4f9d 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornParser.cs @@ -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; }