From ca08c818e6592ffd662ca34c3a535513d014de9d Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 30 Sep 2023 22:41:25 +0300 Subject: [PATCH] Fixed: (TorrentPotato) Use full IMDb Id --- .../Definitions/TorrentPotato/TorrentPotatoRequestGenerator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoRequestGenerator.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoRequestGenerator.cs index 465437b0f..b7df35f5a 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoRequestGenerator.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentPotato/TorrentPotatoRequestGenerator.cs @@ -19,7 +19,7 @@ namespace NzbDrone.Core.Indexers.Definitions.TorrentPotato { var pageableRequests = new IndexerPageableRequestChain(); - pageableRequests.Add(BuildRequest(searchCriteria.SearchTerm, searchCriteria.ImdbId)); + pageableRequests.Add(BuildRequest(searchCriteria.SearchTerm, searchCriteria.FullImdbId)); return pageableRequests; }