BlackoutComics: Fix selectors (#3729)

fix
This commit is contained in:
bapeey 2024-06-26 06:29:06 -05:00 committed by Draff
parent 947c34f4c8
commit be0f6c90fd
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ext {
extName = 'Blackout Comics'
extClass = '.BlackoutComics'
extVersionCode = 3
extVersionCode = 4
isNsfw = true
}

View File

@ -155,7 +155,7 @@ class BlackoutComics : ParsedHttpSource() {
// =============================== Pages ================================
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"))
}
}