Merge pull request #3234 from SnakeDoc83/wpmangastream

WP Mangastream - fix details thumbnail
This commit is contained in:
Mike 2020-05-19 02:27:16 -04:00 committed by GitHub
commit e9720241fb
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 {
appName = 'Tachiyomi: WP Manga Stream'
pkgNameSuffix = 'all.wpmangastream'
extClass = '.WPMangaStreamFactory'
extVersionCode = 12
extVersionCode = 13
libVersion = '1.2'
}

View File

@ -167,7 +167,7 @@ abstract class WPMangaStream(
author = infoElement.select("span:contains(Author:)").firstOrNull()?.ownText()
artist = author
description = infoElement.select("div.desc p").joinToString("\n") { it.text() }
thumbnail_url = infoElement.select("img").imgAttr()
thumbnail_url = infoElement.select("div.thumb img").imgAttr()
}
}
}