AsuraScans: Fix pages selector (#4432)

lel
This commit is contained in:
bapeey 2024-08-05 22:32:45 -05:00 committed by Draff
parent 8b0ff6e537
commit 6b8d072c6c
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 { ext {
extName = 'Asura Scans' extName = 'Asura Scans'
extClass = '.AsuraScans' extClass = '.AsuraScans'
extVersionCode = 38 extVersionCode = 39
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -258,7 +258,7 @@ class AsuraScans : ParsedHttpSource(), ConfigurableSource {
} }
override fun pageListParse(document: Document): List<Page> { override fun pageListParse(document: Document): List<Page> {
return document.select("div > img[alt=chapter]").mapIndexed { i, element -> return document.select("div > img[alt*=chapter]").mapIndexed { i, element ->
Page(i, imageUrl = element.attr("abs:src")) Page(i, imageUrl = element.attr("abs:src"))
} }
} }