Fix search next page selector (#8571)

This commit is contained in:
Arraiment 2021-08-16 18:09:57 +08:00 committed by GitHub
parent 6dde6d877a
commit cce0c70265
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 {
extName = 'MangaPill'
pkgNameSuffix = 'en.mangapill'
extClass = '.MangaPill'
extVersionCode = 4
extVersionCode = 5
libVersion = '1.2'
}

View File

@ -55,7 +55,7 @@ class MangaPill : ParsedHttpSource() {
override fun popularMangaNextPageSelector() = "a.next.page-numbers"
override fun latestUpdatesNextPageSelector() = null
override fun searchMangaNextPageSelector() = popularMangaNextPageSelector()
override fun searchMangaNextPageSelector() = "a.btn:contains(Next)"
override fun mangaDetailsParse(document: Document): SManga {
val manga = SManga.create()