TraduccionesMoonlight: Fix images not loading (#10834)
fix images not loading
This commit is contained in:
parent
64d08b63ee
commit
97ab81e855
@ -3,7 +3,7 @@ ext {
|
||||
extClass = '.TraduccionesMoonlight'
|
||||
themePkg = 'mangaesp'
|
||||
baseUrl = 'https://traduccionesmoonlight.com'
|
||||
overrideVersionCode = 39
|
||||
overrideVersionCode = 40
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
||||
@ -27,8 +27,8 @@ class TraduccionesMoonlight : MangaEsp(
|
||||
}
|
||||
doc = client.newCall(POST(url, headers, body.build())).execute().asJsoup()
|
||||
}
|
||||
return doc.select("main.contenedor.read img, main > img[src]").mapIndexed { i, element ->
|
||||
Page(i, imageUrl = element.attr("abs:src"))
|
||||
return doc.select("main.contenedor.read img, main > img").mapIndexed { i, element ->
|
||||
Page(i, imageUrl = element.imgAttr())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user