From fa918481269ad8a401b38dc702fd970bc81c8d75 Mon Sep 17 00:00:00 2001 From: kaso17 Date: Tue, 14 Feb 2017 11:36:46 +0100 Subject: [PATCH] PotatoFeed: disable title filtering for torrents with imdbid --- src/Jackett/Utils/TorznabCapsUtil.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Jackett/Utils/TorznabCapsUtil.cs b/src/Jackett/Utils/TorznabCapsUtil.cs index adba7b2e9..6c5539bdd 100644 --- a/src/Jackett/Utils/TorznabCapsUtil.cs +++ b/src/Jackett/Utils/TorznabCapsUtil.cs @@ -49,6 +49,13 @@ namespace Jackett.Utils var filteredResults = new List(); foreach (var result in results) { + // don't filter results with IMDBID (will be filtered seperately) + if (result.Imdb != null) + { + filteredResults.Add(result); + continue; + } + if (result.Title == null) continue;