parent
0e9c86f901
commit
01beb2d8d4
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Swords Comic'
|
||||
pkgNameSuffix = 'en.swordscomic'
|
||||
extClass = '.SwordsComic'
|
||||
extVersionCode = 2
|
||||
extVersionCode = 3
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue