fix(en/tokuzilla): Fix search selector (#2338)

This commit is contained in:
Claudemirovsky
2023-10-09 08:26:46 -03:00
committed by GitHub
parent 9de5429fdf
commit ad850973e9
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ ext {
extName = 'Tokuzilla' extName = 'Tokuzilla'
pkgNameSuffix = 'en.tokuzilla' pkgNameSuffix = 'en.tokuzilla'
extClass = '.Tokuzilla' extClass = '.Tokuzilla'
extVersionCode = 11 extVersionCode = 12
libVersion = '13' libVersion = '13'
containsNsfw = false containsNsfw = false
} }

View File

@ -35,7 +35,7 @@ class Tokuzilla : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
} }
// ============================== Popular =============================== // ============================== Popular ===============================
override fun popularAnimeSelector() = "div.col-sm-4.col-xs-12.item.post" override fun popularAnimeSelector() = "div.col-sm-4.col-xs-12.item"
override fun popularAnimeRequest(page: Int) = GET("$baseUrl/page/$page") override fun popularAnimeRequest(page: Int) = GET("$baseUrl/page/$page")