mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 21:26:08 +00:00
AnimeBytes: improve Audio category matching
This commit is contained in:
parent
07744ab88f
commit
7230507f5a
1 changed files with 1 additions and 1 deletions
|
@ -372,7 +372,7 @@ namespace Jackett.Indexers
|
|||
if (searchType == SearchType.Audio)
|
||||
{
|
||||
category = seriesCq.Find(".group_img .cat a").Text();
|
||||
if (category == "Single" || category == "Album" || category == "Compilation" || category == "Soundtrack" || category == "Remix CD")
|
||||
if (category == "Single" || category == "EP" || category == "Album" || category == "Compilation" || category == "Soundtrack" || category == "Remix CD" || category == "PV" || category == "Live Album" || category == "Image CD" || category == "Drama CD" || category == "Vocal CD")
|
||||
{
|
||||
var description = rowCq.Find(".torrent_properties a:eq(1)").Text();
|
||||
if (description.Contains(" Lossless "))
|
||||
|
|
Loading…
Reference in a new issue