Merge pull request #3234 from SnakeDoc83/wpmangastream
WP Mangastream - fix details thumbnail
This commit is contained in:
commit
e9720241fb
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: WP Manga Stream'
|
appName = 'Tachiyomi: WP Manga Stream'
|
||||||
pkgNameSuffix = 'all.wpmangastream'
|
pkgNameSuffix = 'all.wpmangastream'
|
||||||
extClass = '.WPMangaStreamFactory'
|
extClass = '.WPMangaStreamFactory'
|
||||||
extVersionCode = 12
|
extVersionCode = 13
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -167,7 +167,7 @@ abstract class WPMangaStream(
|
||||||
author = infoElement.select("span:contains(Author:)").firstOrNull()?.ownText()
|
author = infoElement.select("span:contains(Author:)").firstOrNull()?.ownText()
|
||||||
artist = author
|
artist = author
|
||||||
description = infoElement.select("div.desc p").joinToString("\n") { it.text() }
|
description = infoElement.select("div.desc p").joinToString("\n") { it.text() }
|
||||||
thumbnail_url = infoElement.select("img").imgAttr()
|
thumbnail_url = infoElement.select("div.thumb img").imgAttr()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue