fix mangaShip (#5305)
This commit is contained in:
parent
8b375593ff
commit
6b054939b9
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'Manga Ship'
|
||||
pkgNameSuffix = 'tr.mangaship'
|
||||
extClass = '.MangaShip'
|
||||
extVersionCode = 1
|
||||
extVersionCode = 2
|
||||
libVersion = '1.2'
|
||||
}
|
||||
|
||||
|
|
|
@ -98,7 +98,7 @@ class MangaShip : ParsedHttpSource() {
|
|||
// Pages
|
||||
|
||||
override fun pageListParse(document: Document): List<Page> {
|
||||
return document.select("div.reading-content img").mapIndexed { i, img ->
|
||||
return document.select("div.reading-content-manga img").mapIndexed { i, img ->
|
||||
Page(i, "", img.dataImageAsUrl("src"))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue