diff --git a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs index d0e91f161..d98339c16 100644 --- a/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/PassThePopcorn/PassThePopcornRequestGenerator.cs @@ -28,7 +28,16 @@ namespace NzbDrone.Core.Indexers.PassThePopcorn public IndexerPageableRequestChain GetSearchRequests(MovieSearchCriteria searchCriteria) { var pageableRequests = new IndexerPageableRequestChain(); - pageableRequests.Add(GetRequest(searchCriteria.Movie.ImdbId)); + + if (searchCriteria.Movie.ImdbId.IsNotNullOrWhiteSpace()) + { + pageableRequests.Add(GetRequest(searchCriteria.Movie.ImdbId)); + } + else if (searchCriteria.Movie.Year > 0) + { + pageableRequests.Add(GetRequest(string.Format("{0}&year={1}", searchCriteria.Movie.Title, searchCriteria.Movie.Year))); + } + return pageableRequests; }