mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 23:22:46 +00:00
Torrentech: Add support for AAC category mapping
This commit is contained in:
parent
3cf09f5b0f
commit
3ca760145c
1 changed files with 2 additions and 0 deletions
|
@ -169,6 +169,8 @@ namespace Jackett.Indexers
|
|||
|
||||
if (format.Contains("MP3"))
|
||||
release.Category = TorznabCatType.AudioMP3.ID;
|
||||
else if (format.Contains("AAC"))
|
||||
release.Category = TorznabCatType.AudioOther.ID;
|
||||
else if (format.Contains("Lossless"))
|
||||
release.Category = TorznabCatType.AudioLossless.ID;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue