parent
f5d9d57008
commit
640344e5e2
|
@ -1,7 +1,7 @@
|
||||||
ext {
|
ext {
|
||||||
extName = 'Pururin'
|
extName = 'Pururin'
|
||||||
extClass = '.PururinFactory'
|
extClass = '.PururinFactory'
|
||||||
extVersionCode = 7
|
extVersionCode = 8
|
||||||
isNsfw = true
|
isNsfw = true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -150,7 +150,7 @@ abstract class Pururin(
|
||||||
override fun pageListParse(document: Document): List<Page> {
|
override fun pageListParse(document: Document): List<Page> {
|
||||||
return document.select(".gallery-preview a img")
|
return document.select(".gallery-preview a img")
|
||||||
.mapIndexed { i, img ->
|
.mapIndexed { i, img ->
|
||||||
Page(i, "", img.attr("abs:src").replace("t.", "."))
|
Page(i, "", (if (img.hasAttr("abs:src")) img.attr("abs:src") else img.attr("abs:data-src")).replace("t.", "."))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue