Swords Comic: fix chapter issue (#13876)

Closes #13869
This commit is contained in:
Riztard Lanthorn 2022-10-17 18:47:16 +07:00 committed by GitHub
parent 0e9c86f901
commit 01beb2d8d4
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 = 'Swords Comic'
pkgNameSuffix = 'en.swordscomic'
extClass = '.SwordsComic'
extVersionCode = 2
extVersionCode = 3
}
apply from: "$rootDir/common.gradle"

View File

@ -73,7 +73,7 @@ class SwordsComic : HttpSource() {
// Chapters
override fun chapterListParse(response: Response): List<SChapter> {
return response.asJsoup().select("a.archive-tile-short")
return response.asJsoup().select("a.archive-tile")
.map { element ->
SChapter.create().apply {
name = element.select("strong").text()