TeamX: Fix images couldn't load (#17599)

Fix
This commit is contained in:
bapeey 2023-08-19 11:45:35 -05:00 committed by GitHub
parent 9f2e7468ce
commit 3b8d559c32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Team X'
pkgNameSuffix = 'ar.teamx'
extClass = '.TeamX'
extVersionCode = 12
extVersionCode = 13
}
apply from: "$rootDir/common.gradle"

View File

@ -190,7 +190,7 @@ class TeamX : ParsedHttpSource() {
// Pages
override fun pageListParse(document: Document): List<Page> {
return document.select("div.image_list img").mapIndexed { i, img ->
return document.select("div.image_list img[src]").mapIndexed { i, img ->
Page(i, "", img.absUrl("src"))
}
}