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:
NMBLM 2021-06-30 14:52:17 +01:00 committed by GitHub
parent 97e18a0ba2
commit 35e9e8961c
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-raw.club' extName = 'manga-raw.club'
pkgNameSuffix = 'en.mangarawclub' pkgNameSuffix = 'en.mangarawclub'
extClass = '.MangaRawClub' extClass = '.MangaRawClub'
extVersionCode = 2 extVersionCode = 3
libVersion = '1.2' libVersion = '1.2'
containsNsfw = true containsNsfw = true
} }

View File

@ -93,7 +93,7 @@ class MangaRawClub : ParsedHttpSource() {
manga.description = document.getElementsByClass("description").first().text() manga.description = document.getElementsByClass("description").first().text()
manga.description = document.select("div.summary > div.content").first().text() manga.description = document.select("div.summary > div.content").first().text()
val coverElement = document.getElementsByClass("cover") 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 return manga
} }