Manga-Raw.Club update, fixed thumbnails not showing in library (#7922)
* [EN] manga-raw.club extension implementation * Added nsfw tag * Change to get correct description and if date parse fails returns 0 * update extension version number * Date is now parsed always with English Locale * Fixed Status to show correctly * Fix thumbnail not showing * Update Build Version
This commit is contained in:
parent
97e18a0ba2
commit
35e9e8961c
|
@ -5,7 +5,7 @@ ext {
|
|||
extName = 'manga-raw.club'
|
||||
pkgNameSuffix = 'en.mangarawclub'
|
||||
extClass = '.MangaRawClub'
|
||||
extVersionCode = 2
|
||||
extVersionCode = 3
|
||||
libVersion = '1.2'
|
||||
containsNsfw = true
|
||||
}
|
||||
|
|
|
@ -93,7 +93,7 @@ class MangaRawClub : ParsedHttpSource() {
|
|||
manga.description = document.getElementsByClass("description").first().text()
|
||||
manga.description = document.select("div.summary > div.content").first().text()
|
||||
val coverElement = document.getElementsByClass("cover")
|
||||
manga.thumbnail_url = baseUrl + coverElement.select("img").attr("data-src")
|
||||
manga.thumbnail_url = coverElement.select("img").attr("data-src")
|
||||
|
||||
return manga
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue