mirror of
https://github.com/Prowlarr/Prowlarr
synced 2025-12-29 20:03:56 +01:00
New: (InternetArchive) Add Support for TV Categories
ref API docs `movies: any item where the main media content is video files, like mpeg, mov, avi, etc`
This commit is contained in:
parent
f0f2c88c4a
commit
dbbc913809
1 changed files with 2 additions and 0 deletions
|
|
@ -71,10 +71,12 @@ private IndexerCapabilities SetCapabilities()
|
|||
};
|
||||
|
||||
// c.f. https://archive.org/services/docs/api/metadata-schema/index.html?highlight=mediatype#mediatype
|
||||
// "Movies" is a catch all category for videos
|
||||
caps.Categories.AddCategoryMapping("texts", NewznabStandardCategory.Books);
|
||||
caps.Categories.AddCategoryMapping("etree", NewznabStandardCategory.Audio);
|
||||
caps.Categories.AddCategoryMapping("audio", NewznabStandardCategory.Audio);
|
||||
caps.Categories.AddCategoryMapping("movies", NewznabStandardCategory.Movies);
|
||||
caps.Categories.AddCategoryMapping("movies", NewznabStandardCategory.TV);
|
||||
caps.Categories.AddCategoryMapping("software", NewznabStandardCategory.PC);
|
||||
caps.Categories.AddCategoryMapping("image", NewznabStandardCategory.OtherMisc);
|
||||
caps.Categories.AddCategoryMapping("data", NewznabStandardCategory.Other);
|
||||
|
|
|
|||
Loading…
Reference in a new issue