passthepopcorn: fix filtering by golden releases

This commit is contained in:
Bogdan
2024-09-29 11:55:22 +03:00
parent ae78af8bd4
commit 5e0d30b9fc

View File

@@ -128,6 +128,11 @@ namespace Jackett.Common.Indexers.Definitions
queryCollection.Set("freetorrent", "1");
}
if (configGoldenPopcornOnly)
{
queryCollection.Set("scene", "2");
}
var searchQuery = query.ImdbID.IsNotNullOrWhiteSpace() ? query.ImdbID : query.GetQueryString();
if (searchQuery.IsNotNullOrWhiteSpace())