1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-03-04 02:38:08 +00:00

filelist: add new category

This commit is contained in:
Bogdan 2024-09-30 17:29:47 +03:00
parent f2db8aa0fd
commit 607603a67c

View file

@ -111,6 +111,8 @@ namespace Jackett.Common.Indexers.Definitions
caps.Categories.AddCategoryMapping(25, TorznabCatType.Movies3D, "Filme 3D");
caps.Categories.AddCategoryMapping(26, TorznabCatType.MoviesBluRay, "Filme 4K Blu-Ray");
caps.Categories.AddCategoryMapping(27, TorznabCatType.TVUHD, "Seriale 4K");
caps.Categories.AddCategoryMapping(28, TorznabCatType.MoviesForeign, "RO Dubbed");
caps.Categories.AddCategoryMapping(28, TorznabCatType.TVForeign, "RO Dubbed");
return caps;
}
@ -212,7 +214,7 @@ namespace Jackett.Common.Indexers.Definitions
var queryCollection = new NameValueCollection
{
{"category", string.Join(",", MapTorznabCapsToTrackers(query))}
{ "category", string.Join(",", MapTorznabCapsToTrackers(query).Distinct().ToList()) }
};
if (configData.Freeleech.Value)