HentaiFox - fix genre search pages (#2785)

HentaiFox - fix genre search pages
This commit is contained in:
Mike 2020-04-23 22:10:53 -04:00 committed by GitHub
parent 892a8e5a31
commit 571a88d3fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: HentaiFox' appName = 'Tachiyomi: HentaiFox'
pkgNameSuffix = 'en.hentaifox' pkgNameSuffix = 'en.hentaifox'
extClass = '.HentaiFox' extClass = '.HentaiFox'
extVersionCode = 1 extVersionCode = 2
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -66,7 +66,7 @@ class HentaiFox : ParsedHttpSource() {
filters.forEach { filter -> filters.forEach { filter ->
when (filter) { when (filter) {
is GenreFilter -> { is GenreFilter -> {
url += "${filter.toUriPart()}/" url += "${filter.toUriPart()}/pag/$page/"
} }
} }
} }