parent
371716b5b8
commit
0741c20a9f
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Mangakawaii'
|
||||
pkgNameSuffix = 'fr.mangakawaii'
|
||||
extClass = '.MangaKawaii'
|
||||
extVersionCode = 27
|
||||
extVersionCode = 28
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -137,8 +137,12 @@ class MangaKawaii : ParsedHttpSource() {
|
|||
val elements = document.select(selectorDecoded)
|
||||
|
||||
val pages = mutableListOf<Page>()
|
||||
var j = 0
|
||||
for (i in 0 until elements.count()) {
|
||||
pages.add(Page(i, document.location(), elements[i].attr("src").trim()))
|
||||
if (elements[i].attr("src").trim() != "") {
|
||||
pages.add(Page(j, document.location(), elements[i].attr("src").trim()))
|
||||
++j
|
||||
}
|
||||
}
|
||||
return pages
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue