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:
parent
f2db8aa0fd
commit
607603a67c
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue