fix mangaShip (#5305)

This commit is contained in:
Riztard Lanthorn 2021-01-04 23:58:52 +07:00 committed by GitHub
parent 8b375593ff
commit 6b054939b9
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 = 'Manga Ship' extName = 'Manga Ship'
pkgNameSuffix = 'tr.mangaship' pkgNameSuffix = 'tr.mangaship'
extClass = '.MangaShip' extClass = '.MangaShip'
extVersionCode = 1 extVersionCode = 2
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -98,7 +98,7 @@ class MangaShip : ParsedHttpSource() {
// Pages // Pages
override fun pageListParse(document: Document): List<Page> { 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")) Page(i, "", img.dataImageAsUrl("src"))
} }
} }