BlackoutComics: Fix selectors (#3729)

fix
This commit is contained in:
bapeey 2024-06-26 06:29:06 -05:00 committed by GitHub
parent 6295d28dd9
commit 811f6a0ab2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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"))
}
}