Traducciones Moonlight: filter out novels (#1462)

filter out novels
This commit is contained in:
Secozzi 2024-02-22 18:45:10 +00:00 committed by Draff
parent 1d6ed34d77
commit a4e00cedbe
2 changed files with 4 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.TraduccionesMoonlight'
themePkg = 'mangathemesia'
baseUrl = 'https://traduccionesmoonlight.com'
overrideVersionCode = 7
overrideVersionCode = 8
isNsfw = true
}

View File

@ -21,4 +21,7 @@ class TraduccionesMoonlight : MangaThemesia(
override val seriesAuthorSelector = ".tsinfo .imptdt:contains(autor) i"
override val seriesStatusSelector = ".tsinfo .imptdt:contains(estado) i"
// Filter out novels
override fun searchMangaSelector() = ".utao .uta .imgu:not(:has(.novelabel)), .listupd .bs .bsx:not(:has(.novelabel)), .listo .bs .bsx:not(:has(.novelabel))"
}