AnimeBytes: improve Audio category matching

This commit is contained in:
kaso17 2017-10-18 11:00:47 +02:00
parent 07744ab88f
commit 7230507f5a
1 changed files with 1 additions and 1 deletions

View File

@ -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 "))