parent
947c34f4c8
commit
be0f6c90fd
|
@ -1,7 +1,7 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'Blackout Comics'
|
extName = 'Blackout Comics'
|
||||||
extClass = '.BlackoutComics'
|
extClass = '.BlackoutComics'
|
||||||
extVersionCode = 3
|
extVersionCode = 4
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -155,7 +155,7 @@ class BlackoutComics : ParsedHttpSource() {
|
||||||
|
|
||||||
// =============================== Pages ================================
|
// =============================== Pages ================================
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
return document.select("div.chapter-image canvas").mapIndexed { index, item ->
|
return document.select("div[class^=chapter-image] canvas[height][width][data-src^=/assets/obras/]").mapIndexed { index, item ->
|
||||||
Page(index, "", item.absUrl("data-src"))
|
Page(index, "", item.absUrl("data-src"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue