From ad850973e9a8048078dc494e48ffe1dee6a36edf Mon Sep 17 00:00:00 2001 From: Claudemirovsky <63046606+Claudemirovsky@users.noreply.github.com> Date: Mon, 9 Oct 2023 08:26:46 -0300 Subject: [PATCH] fix(en/tokuzilla): Fix search selector (#2338) --- src/en/tokuzilla/build.gradle | 2 +- .../kanade/tachiyomi/animeextension/en/tokuzilla/Tokuzilla.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/en/tokuzilla/build.gradle b/src/en/tokuzilla/build.gradle index 9e3c52d69..5ef530881 100644 --- a/src/en/tokuzilla/build.gradle +++ b/src/en/tokuzilla/build.gradle @@ -7,7 +7,7 @@ ext { extName = 'Tokuzilla' pkgNameSuffix = 'en.tokuzilla' extClass = '.Tokuzilla' - extVersionCode = 11 + extVersionCode = 12 libVersion = '13' containsNsfw = false } diff --git a/src/en/tokuzilla/src/eu/kanade/tachiyomi/animeextension/en/tokuzilla/Tokuzilla.kt b/src/en/tokuzilla/src/eu/kanade/tachiyomi/animeextension/en/tokuzilla/Tokuzilla.kt index 03221d053..6bd7c55bf 100644 --- a/src/en/tokuzilla/src/eu/kanade/tachiyomi/animeextension/en/tokuzilla/Tokuzilla.kt +++ b/src/en/tokuzilla/src/eu/kanade/tachiyomi/animeextension/en/tokuzilla/Tokuzilla.kt @@ -35,7 +35,7 @@ class Tokuzilla : ConfigurableAnimeSource, ParsedAnimeHttpSource() { } // ============================== 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")