WP Mangastream - fix details thumbnail

This commit is contained in:
snakedoc83 2020-05-19 02:01:52 -04:00
parent 00e5c6a531
commit 7fced26652
2 changed files with 2 additions and 2 deletions

View File

@ -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'
} }

View File

@ -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()
} }
} }
} }