Pass the Popcorn: update categories

This commit is contained in:
kaso17 2017-03-16 08:10:19 +01:00
parent 71e0ec9ced
commit f3fa589ad2
1 changed files with 5 additions and 1 deletions

View File

@ -50,7 +50,7 @@ namespace Jackett.Indexers
webclient.requestDelay = 2; // 0.5 requests per second
AddCategoryMapping(1, TorznabCatType.Movies);
AddCategoryMapping(1, TorznabCatType.Movies, "Feature Film");
AddCategoryMapping(1, TorznabCatType.MoviesForeign);
AddCategoryMapping(1, TorznabCatType.MoviesOther);
AddCategoryMapping(1, TorznabCatType.MoviesSD);
@ -59,6 +59,10 @@ namespace Jackett.Indexers
AddCategoryMapping(1, TorznabCatType.MoviesBluRay);
AddCategoryMapping(1, TorznabCatType.MoviesDVD);
AddCategoryMapping(1, TorznabCatType.MoviesWEBDL);
AddCategoryMapping(2, TorznabCatType.Movies, "Short Film");
AddCategoryMapping(3, TorznabCatType.TV, "Miniseries");
AddCategoryMapping(4, TorznabCatType.TV, "Stand-up Comedy");
AddCategoryMapping(5, TorznabCatType.TV, "Live Performance");
}
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)