mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
PotatoFeed: disable title filtering for torrents with imdbid
This commit is contained in:
@@ -49,6 +49,13 @@ namespace Jackett.Utils
|
||||
var filteredResults = new List<ReleaseInfo>();
|
||||
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;
|
||||
|
||||
|
Reference in New Issue
Block a user