Fix images loading problems (#8914)
* Update build.gradle * Update HentaiFox.kt
This commit is contained in:
parent
feb8f7929f
commit
28ad547c08
|
@ -6,7 +6,7 @@ ext {
|
|||
pkgNameSuffix = 'en.hentaifox'
|
||||
extClass = '.HentaiFox'
|
||||
extVersionCode = 2
|
||||
libVersion = '1.2'
|
||||
libVersion = '1.3'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -134,7 +134,7 @@ class HentaiFox : ParsedHttpSource() {
|
|||
}
|
||||
|
||||
override fun imageUrlParse(document: Document): String {
|
||||
return document.select("img#gimg").attr("abs:src")
|
||||
return document.select("img#gimg").attr("abs:data-src")
|
||||
}
|
||||
|
||||
override fun pageListParse(document: Document): List<Page> = throw UnsupportedOperationException("Not used")
|
||||
|
|
Loading…
Reference in New Issue