From fe324dcc0c95691f4202e452eea7615ddfbbaffa Mon Sep 17 00:00:00 2001 From: chryzsh Date: Fri, 13 Aug 2021 09:54:41 +0200 Subject: [PATCH] Fixed: (Indexer) PTP IMDB search --- .../PassThePopcorn/PassThePopcornRequestGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/PassThePopcorn/PassThePopcornRequestGenerator.cs b/src/NzbDrone.Core/Indexers/Definitions/PassThePopcorn/PassThePopcornRequestGenerator.cs index 77fb4c6ee..0bc70fd41 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/PassThePopcorn/PassThePopcornRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/PassThePopcorn/PassThePopcornRequestGenerator.cs @@ -22,7 +22,7 @@ public IndexerPageableRequestChain GetSearchRequests(MovieSearchCriteria searchC if (searchCriteria.ImdbId.IsNotNullOrWhiteSpace()) { - pageableRequests.Add(GetRequest(searchCriteria.ImdbId)); + pageableRequests.Add(GetRequest(searchCriteria.FullImdbId)); } else {